From e45c9e12880389949899bef77fb0a5a8f65a5496 Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Tue, 15 Oct 2024 13:56:05 -0700 Subject: [PATCH] handle continue on failure for loop node (#984) --- .../src/routes/workflows/editor/workflowEditorUtils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/skyvern-frontend/src/routes/workflows/editor/workflowEditorUtils.ts b/skyvern-frontend/src/routes/workflows/editor/workflowEditorUtils.ts index 82ccce1d..3c1ca8ec 100644 --- a/skyvern-frontend/src/routes/workflows/editor/workflowEditorUtils.ts +++ b/skyvern-frontend/src/routes/workflows/editor/workflowEditorUtils.ts @@ -610,6 +610,7 @@ function getWorkflowBlocksUtil(nodes: Array): Array { { block_type: "for_loop", label: node.data.label, + continue_on_failure: node.data.continueOnFailure, loop_over_parameter_key: node.data.loopValue, loop_blocks: nodes .filter((n) => n.parentId === node.id)