From cd93d3aeeb35df4bf2b34b3958913335b695eb3c Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Sat, 6 Aug 2022 13:34:26 +0200 Subject: [PATCH] fix prop picker wrt to new iter changes --- frontend/src/lib/components/flows/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/components/flows/utils.ts b/frontend/src/lib/components/flows/utils.ts index b8298d653f..226093b178 100644 --- a/frontend/src/lib/components/flows/utils.ts +++ b/frontend/src/lib/components/flows/utils.ts @@ -246,7 +246,7 @@ function computeFlowInputPull(previewResult: any | undefined, flowInputAsObject: index: 'The current index of the iteration as a number' } } - return Object.assign(Object.assign(flowInputAsObject, previewResult), iteratorValues) + return Object.assign(flowInputAsObject, iteratorValues) }