From cf732ce173d1e04f53113173885bbd456dc0f449 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Fri, 9 Jun 2023 13:33:47 +0200 Subject: [PATCH] Event dashboard: Make comment text box larger --- src/pretix/control/forms/event.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/control/forms/event.py b/src/pretix/control/forms/event.py index 5f11a83f2..9c5fa0344 100644 --- a/src/pretix/control/forms/event.py +++ b/src/pretix/control/forms/event.py @@ -1396,7 +1396,7 @@ class CommentForm(I18nModelForm): fields = ['comment'] widgets = { 'comment': forms.Textarea(attrs={ - 'rows': 3, + 'rows': 6, 'class': 'helper-width-100', }), }