refactor: rename context variable from 'collection' to 'case' in CaseAuthorUpdate

This commit is contained in:
Ross
2026-07-13 12:54:47 +01:00
parent f51faff534
commit 0afed5a983
+1 -1
View File
@@ -10588,7 +10588,7 @@ class CaseAuthorUpdate(RevisionMixin, AuthorRequiredMixin, UpdateView):
def get_context_data(self, **kwargs):
context = super(CaseAuthorUpdate, self).get_context_data(**kwargs)
context["collection"] = context["object"]
context["case"] = context["object"]
return context