From d148e50cdfb7d91c492a018f18c9348ee1e337af Mon Sep 17 00:00:00 2001 From: CocoByte Date: Tue, 11 Mar 2025 19:13:55 -0600 Subject: [PATCH] repair --- src/registrar/forms/domain.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/registrar/forms/domain.py b/src/registrar/forms/domain.py index 5ffbdb3d8..874f35804 100644 --- a/src/registrar/forms/domain.py +++ b/src/registrar/forms/domain.py @@ -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 you’d like us to know about your domain request? \ + Provide details below. You can enter up to 2000 characters" + } + ), ) def clean(self):