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
Initial testing indicates interface elements like Download PDF, Share, and Show Image Tools are not accessible through keyboard navigation, just by mouse.
I was able to navigate through the "windows options" menu items with voiceover using ctrl+opt+left/right arrows, but this same combination does not work for me when voiceover is turned off. Did not work with NVDA either. This follows the same pattern of what we saw when investigating keyboard navigation through the info panels.
Problem
The list items are given a tab-index of "-1" and therefore are being passed over when tabbing through the page.
Possible solution
Removing the tabIndex="=1" from the <ListSubheader> material UI component should be all that's needed to make this work (and might also solve the problem in other areas as well).
Description
Initial testing indicates interface elements like Download PDF, Share, and Show Image Tools are not accessible through keyboard navigation, just by mouse.
I was able to navigate through the "windows options" menu items with voiceover using ctrl+opt+left/right arrows, but this same combination does not work for me when voiceover is turned off. Did not work with NVDA either. This follows the same pattern of what we saw when investigating keyboard navigation through the info panels.
Problem
The list items are given a tab-index of "-1" and therefore are being passed over when tabbing through the page.
Possible solution
Removing the tabIndex="=1" from the
<ListSubheader>
material UI component should be all that's needed to make this work (and might also solve the problem in other areas as well).I noticed this component in the following files:
The text was updated successfully, but these errors were encountered: