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 way ui_tabs works atm, the rendered HTML does not comply with accessibility standards.
To fix this we would need to replace the <ul> with a <div role="tablist"> and instead of nesting the buttons inside <li>s they would need to be the direct children of the div and have a role="tab" set.
The text was updated successfully, but these errors were encountered:
The way ui_tabs works atm, the rendered HTML does not comply with accessibility standards.
To fix this we would need to replace the
<ul>
with a<div role="tablist">
and instead of nesting the buttons inside<li>
s they would need to be the direct children of thediv
and have arole="tab"
set.The text was updated successfully, but these errors were encountered: