# 86 Comment field length

* removes comment field length limit
* adds improvements for rendering large comments
This commit is contained in:
2022-02-02 12:54:45 +01:00
parent d5e23b420e
commit 77b59db56f
15 changed files with 91 additions and 27 deletions

View File

@@ -346,10 +346,9 @@ class NewActionModalForm(BaseModalForm):
)
comment = forms.CharField(
required=False,
max_length=200,
label=_("Comment"),
label_suffix=_(""),
help_text=_("Additional comment, maximum {} letters").format(200),
help_text=_("Additional comment"),
widget=forms.Textarea(
attrs={
"rows": 5,