This commit is contained in:
Matthew Spence 2024-09-20 13:28:45 -05:00
parent 07c1060f6e
commit cb7005611a
No known key found for this signature in database

View file

@ -202,7 +202,7 @@ class DomainFormBaseView(DomainBaseView, FormMixin):
def _get_changes_from_formset(self, formset):
changes = set()
for form in formset:
changes.update(form.get_changes)
changes.update(form.changed_data)
return list(changes)