From 7d7b84fd364b49db309d6816aff5f0aead6fc575 Mon Sep 17 00:00:00 2001 From: Birger Schacht Date: Tue, 27 Jun 2023 11:51:32 +0200 Subject: [PATCH] feat(apis_relations): make notes field smaller --- apis_core/apis_relations/forms2.py | 1 + 1 file changed, 1 insertion(+) diff --git a/apis_core/apis_relations/forms2.py b/apis_core/apis_relations/forms2.py index 1717e7188..d71574cd5 100644 --- a/apis_core/apis_relations/forms2.py +++ b/apis_core/apis_relations/forms2.py @@ -50,6 +50,7 @@ class Meta: "subj": forms.HiddenInput(), "obj": forms.HiddenInput(), "prop": forms.HiddenInput(), + "notes": forms.Textarea(attrs={"rows": 3}), } def __init__(self, entity_type_self_str, entity_type_other_str):