From 9a3e53f57d1f4b141c911ba466a40ab7ceddafe2 Mon Sep 17 00:00:00 2001 From: David McDonald Date: Mon, 23 Mar 2020 11:36:06 +0000 Subject: [PATCH] Mark field as optional As suggested by the design system --- app/main/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main/forms.py b/app/main/forms.py index bbec39080..34e7c2918 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -893,7 +893,7 @@ class SupportType(StripWhitespaceForm): class Feedback(StripWhitespaceForm): - name = StringField('Name') + name = StringField('Name (optional)') email_address = email_address(label='Email address', gov_user=False, required=True) feedback = TextAreaField('Your message', validators=[DataRequired(message="Cannot be empty")])