Skip to content

Commit 1daafa3

Browse files
committed
Prevents long tag values from wrapping
1 parent 8fd2948 commit 1daafa3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/webapp/app/components/runs/v3/RunTag.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function RunTag({ tag }: { tag: string }) {
2222
<span className="flex items-center border-y border-r border-charcoal-700 bg-charcoal-800 pr-1.5 text-text-dimmed">
2323
{tagResult.key}
2424
</span>
25-
<span className="flex items-center rounded-r-sm border-y border-r border-charcoal-700 bg-charcoal-750 px-1.5 text-text-dimmed">
25+
<span className="flex items-center whitespace-nowrap rounded-r-sm border-y border-r border-charcoal-700 bg-charcoal-750 px-1.5 text-text-dimmed">
2626
{tagResult.value}
2727
</span>
2828
</span>

0 commit comments

Comments
 (0)