Skip to content

Commit a68073c

Browse files
committed
fix(workspaces): wrap feature set names in routing table rows
Allow multi-line display instead of truncating enabled feature sets with ellipsis. Signed-off-by: crimsonsunset <jsangio1@gmail.com>
1 parent d622f5c commit a68073c

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

apps/desktop/src/features/workspaces/WorkspacesPage.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ function EntryCardRoutingTable({
838838
key={row.key}
839839
className={[
840840
ROUTING_GRID_COLS,
841-
'items-center rounded-md border px-1.5 py-1',
841+
'items-start rounded-md border px-1.5 py-1',
842842
row.ghost
843843
? 'border-dashed border-[rgb(var(--border-subtle))] opacity-70'
844844
: 'border-[rgb(var(--border-subtle))] bg-[rgb(var(--background))]',
@@ -859,12 +859,11 @@ function EntryCardRoutingTable({
859859
<span
860860
className={[
861861
cellCls,
862-
'truncate font-medium',
862+
'break-words font-medium leading-snug',
863863
row.ghost
864864
? 'italic text-[rgb(var(--muted))]'
865865
: 'text-primary-700 dark:text-primary-300',
866866
].join(' ')}
867-
title={fsDisplay}
868867
>
869868
{fsDisplay}
870869
</span>

0 commit comments

Comments
 (0)