From 01fdd6f3534e8f01e27cf0ef2740f7b6bf61e9ea Mon Sep 17 00:00:00 2001 From: Henri Courdent <122811744+hcourdent@users.noreply.github.com> Date: Thu, 4 Apr 2024 04:16:42 +0200 Subject: [PATCH] While loop clarification (#3501) --- .../lib/components/flows/content/FlowWhileLoop.svelte | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/lib/components/flows/content/FlowWhileLoop.svelte b/frontend/src/lib/components/flows/content/FlowWhileLoop.svelte index 6ee04a712e..bc86343080 100644 --- a/frontend/src/lib/components/flows/content/FlowWhileLoop.svelte +++ b/frontend/src/lib/components/flows/content/FlowWhileLoop.svelte @@ -48,7 +48,7 @@
- +
@@ -56,10 +56,10 @@ {#if !noEditor} - + Add steps inside the while loop but have one of them use early stop/break in their - Advanced settings to break out of the while loop (otherwise it will loop forever and you - will have to cancel the flow manually) + Advanced settings (or do it at the loop level that will watch the last step) to break out of the while loop (otherwise it will loop forever and you + will have to cancel the flow manually). {/if} @@ -68,7 +68,7 @@
Skip failures If disabled, the flow will fail as soon as one of the iteration fail. Otherwise, the error will be collected as the result of the iteration. Regardless of this setting, if an error handler is defined, it will process the error.