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
In collapsed mode, the TabList goes away and is replaced by a Picker. The aria-labelledby attribute then refers to an element that does not exist in the DOM.
🤔 Expected Behavior
The aria-labelledby attribute on the tabpanel should be updated to refer to the Picker rather than the current tab, which is no longer in the DOM.
😯 Current Behavior
The aria-labelledby attribute on the tabpanel always refers to a tab element that may no longer exist in the DOM.
💁 Possible Solution
Define an id for the CollapsibleTablistPicker element and use that reference for the aria-labelledby attribute on the tabpanel when the TabList is collapsed.