aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web')
-rw-r--r--apps/web/components/shared/sidebar/SidebarItem.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/web/components/shared/sidebar/SidebarItem.tsx b/apps/web/components/shared/sidebar/SidebarItem.tsx
index 83ce776e..c862cc83 100644
--- a/apps/web/components/shared/sidebar/SidebarItem.tsx
+++ b/apps/web/components/shared/sidebar/SidebarItem.tsx
@@ -45,7 +45,9 @@ export default function SidebarItem({
<div className="flex w-full justify-between">
<div className="flex items-center gap-x-2">
{logo}
- <span>{name}</span>
+ <span title={name} className="line-clamp-1">
+ {name}
+ </span>
</div>
{right}
</div>