We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49d020d commit 15d2b45Copy full SHA for 15d2b45
1 file changed
dojo/url/ui/forms.py
@@ -32,7 +32,7 @@ def clean_tags(self):
32
return self.cleaned_data.get("tags")
33
34
def save(self, commit: bool = True) -> URL: # noqa: FBT001, FBT002
35
- url = super().save(commit=commit)
+ url = URL.get_or_create_from_object(self.instance)
36
if commit:
37
url.location.tags.set(self.cleaned_data["tags"])
38
return url
0 commit comments