diff --git a/frontend/src/components/Flow/FlowNode.tsx b/frontend/src/components/Flow/FlowNode.tsx index 4c358b4..4c62166 100644 --- a/frontend/src/components/Flow/FlowNode.tsx +++ b/frontend/src/components/Flow/FlowNode.tsx @@ -152,6 +152,7 @@ function FlowNodeComponent({ data, selected }: NodeProps) { .split("\n") const problem = [...new Set(lines)].join("\n") const status = problem ? "error" : live?.status + const running = status === "running" const style = STATUS_STYLES[status as keyof typeof STATUS_STYLES] return ( @@ -160,8 +161,15 @@ function FlowNodeComponent({ data, selected }: NodeProps) {