Skip to content

Commit 219e550

Browse files
committed
fix(webapp): honor className in STANDARD TaskTriggerSourceIcon
1 parent 32b0e42 commit 219e550

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ export function TaskTriggerSourceIcon({
1212
}) {
1313
switch (source) {
1414
case "STANDARD": {
15-
return <TaskIconSmall className="size-[1.125rem] min-w-[1.125rem] text-tasks" />;
15+
return (
16+
<TaskIconSmall className={cn("size-[1.125rem] min-w-[1.125rem] text-tasks", className)} />
17+
);
1618
}
1719
case "SCHEDULED": {
1820
return (

0 commit comments

Comments
 (0)