{#snippet header()}
If the condition is met, the step will behave as an identity step, passing the previous
step's result through unchanged.
{/snippet}
{
if (isSkipEnabled && flowModule.skip_if) {
flowModule.skip_if = undefined
} else {
flowModule.skip_if = {
expr: 'false'
}
}
}}
options={{
right: 'Skip step if condition is met'
}}
/>
{#if flowModule.skip_if}
Skip condition expression
{
editor?.insertAtCursor(detail)
editor?.focus()
}}
>
{:else}
Skip condition expression
{/if}