1
0
Fork 0
mirror of synced 2024-06-28 02:50:50 +12:00

Ensure a binding exists before continuing with loop

This commit is contained in:
Peter Clement 2022-07-18 13:10:18 +01:00
parent a019e739d1
commit 8dfcb12cdf

View file

@ -161,7 +161,7 @@ class Orchestrator {
let originalStepInput = cloneDeep(step.inputs)
// Handle if the user has set a max iteration count or if it reaches the max limit set by us
if (loopStep) {
if (loopStep && input.binding) {
let newInput = await processObject(
loopStep.inputs,
cloneDeep(this._context)