From 683c0c1729f9fa810b753fce86ba2b41ff655643 Mon Sep 17 00:00:00 2001 From: sab-LC Date: Tue, 22 Oct 2024 14:18:46 -0700 Subject: [PATCH] Addressed issues of Contact us message box --- accounts/forms.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/accounts/forms.py b/accounts/forms.py index 2ee3e55b0..d31383f71 100644 --- a/accounts/forms.py +++ b/accounts/forms.py @@ -151,7 +151,8 @@ class ContactOrganizationForm(forms.Form): widget=forms.Textarea(attrs={ "rows": 4, "cols": 65, - 'class': 'w-100' + 'class': 'w-100', + 'style': 'resize: vertical;' }) )