Description
We're facing an a11y issue while BITV (german wcag). The button 'More Actions' has no description at all. We fixed it with an aria-label this way:
// Button "More Actions" needs an aria-label try { let moreActions_button = document.querySelector("#tmMoreActions > a"); moreActions_button.setAttribute('aria-label', 'More Actions'); } catch (e) { console.log('Button More Actions not found') };
Attachments
Issue Links
- relates to
-
XWIKI-20842 More actions button is an anchor
- Closed