mirror of
https://github.com/ansible/awx.git
synced 2026-02-27 07:56:06 -03:30
Fix aria label routed tab bug value "Object Object"
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user