fix(core): Continue with error output reverse items in success branch (#11684)

This commit is contained in:
Shireen Missi
2024-11-13 15:23:24 +00:00
committed by GitHub
parent 70d315b3d5
commit 6d5ee83296
3 changed files with 139 additions and 200 deletions

View File

@@ -1243,7 +1243,7 @@ export class WorkflowExecute {
: [];
while (items.length) {
const item = items.pop();
const item = items.shift();
if (item === undefined) {
continue;
}