Merge branch 'sidebar-link-truncate' into 'main'

SidebarNavigationLink: truncate too-long text

See merge request soapbox-pub/soapbox!3060
This commit is contained in:
Alex Gleason 2024-06-08 21:00:27 +00:00
commit cdc8c70078
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>
); );
}); });