no changeproblems if changeset is applied

This commit is contained in:
Laura Klünder 2024-12-02 11:42:09 +01:00
parent e1e9b62fc0
commit 8a35e72148

View file

@ -474,4 +474,6 @@ class ChangeSet(models.Model):
@property
def problems(self) -> ChangeProblems:
if self.state == "applied":
return ChangeProblems()
return self.get_changes_as_operations().problems