From ed689dba41fff9f02624df0bf87b2af366352a84 Mon Sep 17 00:00:00 2001 From: "Yoan.liu" Date: Sun, 9 Mar 2025 12:40:32 +0800 Subject: [PATCH] restore currentlength --- ui/src/domain/workflow.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/domain/workflow.ts b/ui/src/domain/workflow.ts index 1a5f7278..07841902 100644 --- a/ui/src/domain/workflow.ts +++ b/ui/src/domain/workflow.ts @@ -460,6 +460,7 @@ export const getOutputBeforeNodeId = (root: WorkflowNode, nodeId: string, type: } if (latestOutput && branch.type === WorkflowNodeType.ExecuteFailure) { output.push(latestOutput); + currentLength += 1; } } }