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
This can be illustrated with the default File type. The has for="form-widgets-file". The main file input has id="form-widgets-file-input". Meanwhile, there is a containing
with id "form-widgets-file". I don't know if that is actually sufficient for screen readers, but dequeue is flagging it as a WCAG2 accessibility issue.
This can be illustrated with the default File type. The has for="form-widgets-file". The main file input has id="form-widgets-file-input". Meanwhile, there is a containing
I checked the blame and it goes all the way back to 2009 in the initial commit for plone.formwidgets.namedfile! https://github.com/plone/plone.formwidget.namedfile/blob/f62ccebf42e097fa792774cac9dcb288b7407250/plone/formwidget/namedfile/file_input.pt. I think we can probably change it so that the
${view/id}-container
(form-widgets-file-container) and the input has id${view/id}
(form-widgets-file) and update the JS references to it.The text was updated successfully, but these errors were encountered: