You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's an issue that's impacting multiple components in our application. The <textarea> element has no associated label which doesn't allow the browser to announce the control to a user that may need it.
Recommendations on fixes:
If the control is a labelable element, add a for attribute to a visible label with the id of this control (e.g. );
Or, if the control is a labelable element, put the control inside a visible element;
Or, add an aria-labelledby attribute to the control. It must point to visible text on the page that is meaningful as a label;
Or, if the design cannot have a visible label, provide a label using the aria-label attribute (e.g. aria-label="Activities");
Or, if the design cannot have a visible label, use the title attribute to provide a label.
The text was updated successfully, but these errors were encountered:
sara-akhtar
changed the title
Accessibility improvement for <textarea> form
Accessibility improvement for <textarea> form control element
Mar 9, 2023
There's an issue that's impacting multiple components in our application. The
<textarea>
element has no associated label which doesn't allow the browser to announce the control to a user that may need it.Recommendations on fixes:
The text was updated successfully, but these errors were encountered: