Skip to content

Commit 008f1ee

Browse files
feat: add html titles to the nav links so the label shows up on hover (#4074)
1 parent e56f542 commit 008f1ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pageLayout/containers/TreeNav.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const TreeSidebar: FC = () => {
4848
>
4949
{generateNavItems().map((item: NavItem) => {
5050
const linkElement = (className: string): JSX.Element => (
51-
<Link to={item.link} className={className} />
51+
<Link to={item.link} className={className} title={item.label} />
5252
)
5353
return (
5454
<TreeNav.Item

0 commit comments

Comments
 (0)