Tags Fields
Issue
Form elements must have labels
(label)
Target application
Articles: New - Thursday Alpha 8 - Administration
Element path
.choices__inner > .choices__input--cloned[autocapitalize="off"][spellcheck="false"]
Snippet
<input type="text" class="choices__input choices__input--cloned" autocomplete="off" autocapitalize="off" spellcheck="false" role="textbox" aria-autocomplete="list" placeholder="Type or select some options" style="width: 191px;">
How to fix
Fix any of the following:
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Form element does not have an implicit (wrapped) <label>
Form element does not have an explicit
The problem is that the label we have is "for" an "id" that is hidden. The id needs to be removed from the hidden select element and added to the choices generated input element.