From 1264e7d4f68dd50df82b8764d3403dc5ce77322f Mon Sep 17 00:00:00 2001 From: zxhlyh Date: Thu, 18 Sep 2025 16:52:27 +0800 Subject: [PATCH] fix: use invalid last run (#25911) --- web/service/use-workflow.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/service/use-workflow.ts b/web/service/use-workflow.ts index 2d4148e6da..901b35994f 100644 --- a/web/service/use-workflow.ts +++ b/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