mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-21 08:02:26 +00:00
fix: show for-loop settings
This commit is contained in:
@@ -125,9 +125,10 @@
|
||||
{:else if stepDetail.value.type == 'identity'}
|
||||
Identity
|
||||
{:else if stepDetail.value.type == 'forloopflow'}
|
||||
For loop
|
||||
For loop {#if stepDetail.value.parallel}(parallel){/if}
|
||||
{#if stepDetail.value.skip_failures}(skip failures){/if}
|
||||
{:else if stepDetail.value.type == 'branchall'}
|
||||
Run all branches
|
||||
Run all branches {#if stepDetail.value.parallel}(parallel){/if}
|
||||
{:else if stepDetail.value.type == 'branchone'}
|
||||
Run one branch
|
||||
{:else if stepDetail.value.type == 'flow'}
|
||||
|
||||
@@ -101,7 +101,10 @@
|
||||
{#if mod.value.type === 'forloopflow'}
|
||||
<FlowModuleSchemaItem
|
||||
deletable={insertable}
|
||||
label={mod.summary || 'For loop'}
|
||||
label={mod.summary ||
|
||||
`For loop ${mod.value.parallel ? '(parallel)' : ''} ${
|
||||
mod.value.skip_failures ? '(skip failures)' : ''
|
||||
}`}
|
||||
id={mod.id}
|
||||
on:move={() => dispatch('move')}
|
||||
on:delete={onDelete}
|
||||
|
||||
Reference in New Issue
Block a user