Skip to content

Commit e45c9e1

Browse files
authored
handle continue on failure for loop node (#984)
1 parent ec2217a commit e45c9e1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

skyvern-frontend/src/routes/workflows/editor/workflowEditorUtils.ts

+1
Original file line numberDiff line numberDiff line change
@@ -610,6 +610,7 @@ function getWorkflowBlocksUtil(nodes: Array<AppNode>): Array<BlockYAML> {
610610
{
611611
block_type: "for_loop",
612612
label: node.data.label,
613+
continue_on_failure: node.data.continueOnFailure,
613614
loop_over_parameter_key: node.data.loopValue,
614615
loop_blocks: nodes
615616
.filter((n) => n.parentId === node.id)

0 commit comments

Comments
 (0)