- First commit to issue fork.
- 🇸🇮Slovenia agile-mark-l
I successfully addressed a merge request and implemented modifications to the classes within the 'js/entity_browser.tabs.next-gen.js' file. The adjustments to the classes now ensure that when the window width is reduced and the tabs collapse, all tabs remain visible instead of only displaying the active one.
- 🇬🇧United Kingdom rick bergmann
The patch works for me (using Claro), but the
role="navigation"
on the<ul>
element is not a permitted aria role and fails an accessibility test.I found it in this line of code:
return $('<ul class="tabs tabs--secondary" role="navigation" aria-label="Tabs"></ul>');
See here for permitted aria roles on a
<ul>
element.Why does it have
role="navigation"
? Should it be removed or changed to instead ofrole="tablist"
instead?