Skip to content

Commit

Permalink
fixup! Feat(web-react): Introduce Vertical Navigation #DS-1627
Browse files Browse the repository at this point in the history
  • Loading branch information
curdaj committed Jan 24, 2025
1 parent 03efacd commit 20fe738
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const NavigationVerticalWithCollapse = () => {
<NavigationItem>
<NavigationAction elementType="button" onClick={toggleHandler} aria-expanded="true" isSelected>
Menu
<Icon name={isOpen ? 'chevron-up' : 'chevron-down'} size="small" />
<Icon name={`chevron-${isOpen ? 'up' : 'down'}`} size="small" />
</NavigationAction>
<Collapse id="collapse-navigation" isOpen={isOpen}>
<ul>
Expand Down

0 comments on commit 20fe738

Please sign in to comment.