Skip to content

Commit 3df5767

Browse files
committed
fix(webapp): increase min width for run slug in filter dropdown
Increase the minimum width for the run slug display inside the RunFilters select dropdown so long slugs are less likely to be truncated prematurely. Change MiddleTruncate to include a min-w-[360px] class on the SelectItem content to provide more room for slugs and improve readability in the runs filter UI.
1 parent 147f228 commit 3df5767

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ function TasksDropdown({
655655
<TaskTriggerSourceIcon source={item.triggerSource} className="size-4 flex-none" />
656656
}
657657
>
658-
<MiddleTruncate text={item.slug} />
658+
<MiddleTruncate text={item.slug} className="min-w-[360px]"/>
659659
</SelectItem>
660660
))}
661661
</SelectList>

0 commit comments

Comments
 (0)