continue on error
This commit is contained in:
@@ -118,6 +118,21 @@
|
||||
<SecondsInput disabled />
|
||||
{/if}
|
||||
</Label>
|
||||
|
||||
<Toggle
|
||||
options={{
|
||||
right: 'Continue on disapproval/timeout',
|
||||
rightTooltip:
|
||||
'Instead of failing the flow, continue to the next step to be processed by a branchone. If any disapproval/timeout event is received, the resume payload will be an object containing an `error` field'
|
||||
}}
|
||||
checked={Boolean(flowModule.suspend?.continue_on_disapprove_timeout)}
|
||||
disabled={!Boolean(flowModule.suspend)}
|
||||
on:change={(e) => {
|
||||
if (flowModule.suspend) {
|
||||
flowModule.suspend.continue_on_disapprove_timeout = e.detail
|
||||
}
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
{:else if suspendTabSelected === 'permissions'}
|
||||
<div class="flex flex-col mt-4 gap-4">
|
||||
|
||||
Reference in New Issue
Block a user