SidebarNavigationLink: truncate too-long text

This commit is contained in:
Alex Gleason 2024-06-08 15:59:13 -05:00
parent 3ce9e1167a
commit 5cc9f3f6e6
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ const SidebarNavigationLink = React.forwardRef((props: ISidebarNavigationLink, r
/> />
</span> </span>
<Text weight='semibold' theme='inherit'>{text}</Text> <Text weight='semibold' theme='inherit' truncate>{text}</Text>
</NavLink> </NavLink>
); );
}); });