Browse Source

fix: workflow continue on error edge color (#11689)

zxhlyh 4 months ago
parent
commit
9f602f73eb
1 changed files with 1 additions and 0 deletions
  1. 1 0
      web/app/components/workflow/hooks/use-workflow-run.ts

+ 1 - 0
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)