From 59b21fc0d8767a23b67c2bb8b3c4744beb7e785a Mon Sep 17 00:00:00 2001 From: Suchintan Date: Thu, 12 Feb 2026 20:57:53 -0500 Subject: [PATCH] Clarify continue_on_failure vs next_loop_on_failure help text in loop blocks (#4731) Co-authored-by: Suchintan Singh --- skyvern-frontend/src/routes/workflows/editor/helpContent.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skyvern-frontend/src/routes/workflows/editor/helpContent.ts b/skyvern-frontend/src/routes/workflows/editor/helpContent.ts index 0f176234..8a15103b 100644 --- a/skyvern-frontend/src/routes/workflows/editor/helpContent.ts +++ b/skyvern-frontend/src/routes/workflows/editor/helpContent.ts @@ -22,9 +22,9 @@ export const baseHelpTooltipContent = { totpIdentifier: "If you are running multiple workflows at once, you will need to give the block an identifier to know that this TOTP goes with this block.", continueOnFailure: - "Allow the workflow to continue if it encounters a failure.", + "If this block fails, skip the failure and continue to the next block in the current iteration. The remaining blocks in the same iteration will still run.", nextLoopOnFailure: - "When inside a for loop, continue to the next iteration if this block fails.", + "If this block fails, skip the remaining blocks in the current iteration and jump to the next loop iteration.", includeActionHistoryInVerification: "Include the action history in the completion verification.", engine: @@ -77,7 +77,7 @@ export const helpTooltips = { loopValue: "Define the values to iterate over. Use a parameter reference or natural language (e.g., 'Extract links of the top 2 posts'). Natural language automatically creates an extraction block that generates a list of string values. Use {{ current_value }} in the loop to get the current iteration value.", nextLoopOnFailure: - "When enabled, if any block inside the loop fails, the loop will immediately jump to the next iteration instead of stopping.", + "If any block inside the loop fails, skip the remaining blocks in the current iteration and jump to the next loop iteration instead of stopping the entire loop.", }, sendEmail: { ...baseHelpTooltipContent,