Skip to content

Commit

Permalink
fix(core): Fix issue with multi input nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
janober committed Jun 9, 2022
1 parent e71d2c9 commit f79675d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/WorkflowExecute.ts
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ export class WorkflowExecute {
// Node has multiple inputs
let nodeWasWaiting = true;

if (this.runExecutionData.executionData!.waitingExecutionSource === null) {
if (!this.runExecutionData.executionData!.waitingExecutionSource) {
this.runExecutionData.executionData!.waitingExecutionSource = {};
}

Expand Down

0 comments on commit f79675d

Please sign in to comment.