From 9f602f73ebdc455b7efe0991cdc5d9c4549f2e25 Mon Sep 17 00:00:00 2001 From: zxhlyh Date: Mon, 16 Dec 2024 15:39:53 +0800 Subject: [PATCH] fix: workflow continue on error edge color (#11689) --- web/app/components/workflow/hooks/use-workflow-run.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/web/app/components/workflow/hooks/use-workflow-run.ts b/web/app/components/workflow/hooks/use-workflow-run.ts index f6a9d24cd336ee..a01b2d31549961 100644 --- a/web/app/components/workflow/hooks/use-workflow-run.ts +++ b/web/app/components/workflow/hooks/use-workflow-run.ts @@ -192,6 +192,7 @@ export const useWorkflowRun = () => { const newNodes = produce(nodes, (draft) => { draft.forEach((node) => { node.data._waitingRun = true + node.data._runningBranchId = undefined }) }) setNodes(newNodes)