dialog
dialog copied to clipboard
Accessibility error: ARIA hidden element must not contain focusable elements
Description:
The issue is that the div elements are focusable and have the attribute "aria-hidden="true" at the same time.
Tools:
axe Devtools, Chrome
Proposed solution:
When the dialog is visible: set "aria-hidden="false" and tabIndex="0"
When the dialog is not visible: set "aria-hidden="true" and tabIndex="-1"