This commit is contained in:
CocoByte 2025-03-11 19:13:55 -06:00
parent 29a48cb7f2
commit d148e50cdf
No known key found for this signature in database
GPG key ID: BBFAA2526384C97F

View file

@ -659,7 +659,13 @@ class DomainDsdataForm(forms.Form):
error_messages={
"required": "Digest is required.",
},
widget=forms.TextArea(attrs={"class": "text-wrap word-break", "rows": "2"}),
widget=forms.Textarea(
attrs={
"class": "text-wrap",
"aria-label": "Is there anything else youd like us to know about your domain request? \
Provide details below. You can enter up to 2000 characters"
}
),
)
def clean(self):