소스 검색

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

zxhlyh 4 달 전
부모
커밋
9f602f73eb
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  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)