Early stop
If defined, at the end of the step, the predicate expression will be evaluated to decide if the flow should stop early. Skipped flows are just a label useful to not see them in the runs page.
{ if (isStopAfterIfEnabled && flowModule.stop_after_if) { flowModule.stop_after_if = undefined } else { flowModule.stop_after_if = { expr: 'result == undefined', skip_if_stopped: false } } }} options={{ right: 'Early stop if condition met' }} /> {#if flowModule.stop_after_if}
Should skip if stopped
Stop condition expression
{ editor?.insertAtCursor(detail) }} >
{:else}
Should skip if stopped
Stop condition expression
{/if}