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
The new beta Firefox accessibility issue checker is suggesting that the listbox element be labeled. There is no way to currently label that element because <label>Results<ul ...>...</ul></label> does not seem to work.
Add
id
attributes (or other attributes) to the<ul
in<ItemsList>
.https://i.imgur.com/n2IbiWo.png
The new beta Firefox accessibility issue checker is suggesting that the
listbox
element be labeled. There is no way to currently label that element because<label>Results<ul ...>...</ul></label>
does not seem to work.<ul {...props.itemsListProps}>
<ul id={props.itemsListId}>
<ul aria-label={props.itemsListLabel}>
This is in concern with react-autosuggest.
The text was updated successfully, but these errors were encountered: