Early stop/Break
If defined, at the end of the step, the predicate expression will be evaluated to decide if the flow should stop early.
{ 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 or Break if condition met' }} />
{#if flowModule.stop_after_if}
Stop condition expression
{ editor?.insertAtCursor(detail) editor?.focus() }} >
{:else}
Stop condition expression
{/if}