Skip to content

Commit 888d0ec

Browse files
authored
Make ZD form fields required (#6733)
1 parent 107ead7 commit 888d0ec

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

kitsune/customercare/forms.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,8 @@ class ZendeskForm(forms.Form):
5252
choices=OS_CHOICES,
5353
required=False,
5454
)
55-
subject = forms.CharField(label=_lazy("Subject"), required=False)
56-
description = forms.CharField(
57-
label=_lazy("Tell us more"), widget=forms.Textarea(), required=False
58-
)
55+
subject = forms.CharField(label=_lazy("Subject"))
56+
description = forms.CharField(label=_lazy("Tell us more"), widget=forms.Textarea())
5957
country = forms.CharField(widget=forms.HiddenInput, required=False)
6058

6159
def __init__(self, *args, product, user=None, **kwargs):

0 commit comments

Comments
 (0)