From e8c47ec8ac8ad62d495700a606e71954bad95fdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9D=9E=E6=B3=95=E6=93=8D=E4=BD=9C?= Date: Thu, 4 Dec 2025 16:23:22 +0800 Subject: [PATCH] fix: incorrect last run result (#29128) --- 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 901b35994f..5da83be360 100644 --- a/web/service/use-workflow.ts +++ b/web/service/use-workflow.ts @@ -123,7 +123,7 @@ export const useInvalidLastRun = (flowType: FlowType, flowId: string, nodeId: st // Rerun workflow or change the version of workflow export const useInvalidAllLastRun = (flowType?: FlowType, flowId?: string) => { - return useInvalid([NAME_SPACE, flowType, 'last-run', flowId]) + return useInvalid([...useLastRunKey, flowType, flowId]) } export const useConversationVarValues = (flowType?: FlowType, flowId?: string) => {