Skip to content

Commit

Permalink
Merge pull request #65 from NASA-PDS/features/update-feedback-links
Browse files Browse the repository at this point in the history
Allow TitleBar Small Menu Links
  • Loading branch information
anilnatha authored Sep 30, 2024
2 parents 447f2a0 + 6499f80 commit 57b1bd4
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions src/components/TitleBar/TitleBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -746,14 +746,20 @@ const TitleBar = ({
</div>
) : (
<div className="pds-wds-titlebar-small-menu-link">
<Typography
className="pds-wds-titlebar-link-label"
variant="h4"
weight="semibold"
textAlign="left"
<Link
className="pds-wds-titlebar-link"
key={item.id}
href={item.href}
>
{item.label}
</Typography>
<Typography
className="pds-wds-titlebar-link-label"
variant="h4"
weight="semibold"
textAlign="left"
>
{item.label}
</Typography>
</Link>
</div>
);
})}
Expand Down

0 comments on commit 57b1bd4

Please sign in to comment.