We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Input elements log an error about accessibility when aria-label, aria-labelledby and placeholder are missing.
aria-label
aria-labelledby
placeholder
There is no check for <label> elements, which makes some accessible inputs still log an error.
<label>
Create an element with this return:
<> <Label htmlFor="test">Label</Label> <TextInput id="test" /> </>
There should be no errors. The text input has an accessible label.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Input elements log an error about accessibility when
aria-label
,aria-labelledby
andplaceholder
are missing.There is no check for
<label>
elements, which makes some accessible inputs still log an error.Steps to reproduce
Create an element with this return:
Expected results
There should be no errors. The text input has an accessible label.
The text was updated successfully, but these errors were encountered: