Skip to content

Commit

Permalink
fix(core): Fix accessor error when running partial execution (#7618)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivov authored Nov 6, 2023
1 parent db56a9e commit 26361df
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 @@ -212,7 +212,7 @@ export class WorkflowExecute {
continue;
}
const nodeIncomingData =
runData[connection.node][runIndex]?.data?.[connection.type][connection.index];
runData[connection.node]?.[runIndex]?.data?.[connection.type]?.[connection.index];
if (nodeIncomingData) {
incomingData.push(nodeIncomingData);
}
Expand Down

0 comments on commit 26361df

Please sign in to comment.