소스 검색

fix: use invalid last run (#25911)

tags/1.9.0
zxhlyh 1 개월 전
부모
커밋
1264e7d4f6
No account linked to committer's email address
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      web/service/use-workflow.ts

+ 1
- 1
web/service/use-workflow.ts 파일 보기

@@ -118,7 +118,7 @@ export const useLastRun = (flowType: FlowType, flowId: string, nodeId: string, e
}

export const useInvalidLastRun = (flowType: FlowType, flowId: string, nodeId: string) => {
return useInvalid([NAME_SPACE, flowType, 'last-run', flowId, nodeId])
return useInvalid([...useLastRunKey, flowType, flowId, nodeId])
}

// Rerun workflow or change the version of workflow

Loading…
취소
저장