From 3e845cee49f5dd8fcd006c6a4d84c0c5a60da899 Mon Sep 17 00:00:00 2001 From: sab-LC Date: Tue, 22 Oct 2024 08:23:09 -0700 Subject: [PATCH] Updated the resizing property of join message modal --- communities/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/communities/forms.py b/communities/forms.py index f25bc9fde..278d15c15 100644 --- a/communities/forms.py +++ b/communities/forms.py @@ -174,5 +174,5 @@ class Meta: fields = ['role', 'message'] widgets = { 'role': forms.Select(attrs={'class': 'w-100'}), - 'message': forms.Textarea(attrs={'rows': 3, 'class':'w-100'}), + 'message': forms.Textarea(attrs={'rows': 3, 'class':'w-100', 'style': 'resize: vertical;'}), }