Skip to content

Commit bead6b3

Browse files
authored
Fix truncate in detail-list-text-value (#3089)
1 parent 4d828b9 commit bead6b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/components/detail-list/detail-list-text-value.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
{#if iconName}
2727
<Icon name={iconName} class="shrink-0" />
2828
{/if}
29-
{text}
29+
<span class="truncate">{text}</span>
3030
</div>
3131
{/snippet}
3232

0 commit comments

Comments
 (0)