From b2e2fa6b7683d325d926e2cea928c26b84e3f48c Mon Sep 17 00:00:00 2001 From: heheer Date: Wed, 5 Mar 2025 13:53:28 +0800 Subject: [PATCH] fix loop child nodes variables (#3980) --- packages/service/core/workflow/dispatch/loop/runLoop.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/service/core/workflow/dispatch/loop/runLoop.ts b/packages/service/core/workflow/dispatch/loop/runLoop.ts index 771a1de19..b3a0d1e4c 100644 --- a/packages/service/core/workflow/dispatch/loop/runLoop.ts +++ b/packages/service/core/workflow/dispatch/loop/runLoop.ts @@ -62,6 +62,7 @@ export const dispatchLoop = async (props: Props): Promise => { const response = await dispatchWorkFlow({ ...props, + variables: newVariables, runtimeEdges: cloneDeep(runtimeEdges) });