This commit is contained in:
Ross
2021-11-28 17:06:49 +00:00
parent fd72594be8
commit a0f1c217fc
+1 -1
View File
@@ -45,7 +45,7 @@ class SeriesFindingsForm(ModelForm):
initial = kwargs.setdefault("initial", {})
# The widget for a ModelMultipleChoiceField expects
# a list of primary key for the selected data.
initial["series"] = kwargs["series_id"].id
initial["series"] = kwargs["series_id"]
super(SeriesFindingsForm, self).__init__(*args, **kwargs)