Skip to content

Commit 4456184

Browse files
authored
Fix task and schedule icons squishing (#2017)
1 parent 2448242 commit 4456184

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@ export function TaskTriggerSourceIcon({
1212
}) {
1313
switch (source) {
1414
case "STANDARD": {
15-
return <TaskIconSmall className="size-[1.125rem] text-tasks" />;
15+
return <TaskIconSmall className="size-[1.125rem] min-w-[1.125rem] text-tasks" />;
1616
}
1717
case "SCHEDULED": {
18-
return <ClockIcon className={cn("size-[1.125rem] text-schedules", className)} />;
18+
return (
19+
<ClockIcon className={cn("size-[1.125rem] min-w-[1.125rem] text-schedules", className)} />
20+
);
1921
}
2022
}
2123
}

0 commit comments

Comments
 (0)