fix(core): Fix execute-once incoming data handling (#5211)

This commit is contained in:
Jan Oberhauser
2023-01-23 05:47:07 -06:00
committed by GitHub
parent fcbf4fd587
commit 3ea83d872e
2 changed files with 9 additions and 7 deletions

View File

@@ -1211,7 +1211,6 @@ export class Workflow {
if (node.executeOnce === true) {
// If node should be executed only once so use only the first input item
connectionInputData = connectionInputData.slice(0, 1);
const newInputData: ITaskDataConnections = {};
for (const inputName of Object.keys(inputData)) {
newInputData[inputName] = inputData[inputName].map((input) => {