mirror of
https://github.com/ansible/awx.git
synced 2026-01-13 02:50:02 -03:30
Fix aria label routed tab bug value "Object Object"
This commit is contained in:
parent
558dfb685e
commit
bd3c4ca50f
@ -32,11 +32,12 @@ function RoutedTabs(props) {
|
||||
<Tabs activeKey={getActiveTabId()} onSelect={handleTabSelect}>
|
||||
{tabsArray.map(tab => (
|
||||
<Tab
|
||||
aria-label={`${tab.name}`}
|
||||
aria-label={typeof tab.name === 'string' ? tab.name : ''}
|
||||
eventKey={tab.id}
|
||||
key={tab.id}
|
||||
link={tab.link}
|
||||
title={<TabTitleText>{tab.name}</TabTitleText>}
|
||||
role="tab"
|
||||
/>
|
||||
))}
|
||||
</Tabs>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user