Skip to content

Commit

Permalink
chore: Don't use extra span tag to render tab text
Browse files Browse the repository at this point in the history
  • Loading branch information
gkarat committed Mar 20, 2023
1 parent 2eddb15 commit 45281ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/InventoryGroupDetail/InventoryGroupDetail.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const InventoryGroupDetail = ({ groupId }) => {
>
<Tab
eventKey={0}
title={<TabTitleText>Systems</TabTitleText>}
title='Systems'
aria-label="Group systems tab"
>
<PageSection>
Expand All @@ -59,7 +59,7 @@ const InventoryGroupDetail = ({ groupId }) => {
</Tab>
<Tab
eventKey={1}
title={<TabTitleText>Group info</TabTitleText>}
title='Group info'
aria-label="Group info tab"
>
{activeTabKey === 1 && ( // helps to lazy load the component
Expand Down

0 comments on commit 45281ad

Please sign in to comment.