mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 08:01:25 +00:00
fix non selected tab in flows
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
export let parentModule: FlowModule | undefined
|
||||
export let previousModuleId: string | undefined
|
||||
|
||||
let selected: string = 'retries'
|
||||
let selected: string = 'early-stop'
|
||||
</script>
|
||||
|
||||
<div class="h-full flex flex-col">
|
||||
@@ -48,14 +48,17 @@
|
||||
stopped early, can be made to sleep or to suspend after execution.
|
||||
</Alert>
|
||||
{/if}
|
||||
|
||||
{#if flowModule.value.type == 'branchall'}
|
||||
<div class="mt-6 mb-2 text-sm font-bold">Run in parallel</div>
|
||||
<Toggle
|
||||
bind:checked={flowModule.value.parallel}
|
||||
options={{
|
||||
right: 'All branches run in parallel'
|
||||
}}
|
||||
/>
|
||||
<div class="p-2">
|
||||
<div class="mt-6 mb-2 text-sm font-bold">Run in parallel</div>
|
||||
<Toggle
|
||||
bind:checked={flowModule.value.parallel}
|
||||
options={{
|
||||
right: 'All branches run in parallel'
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
{#if flowModule}
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
export let previousModuleId: string | undefined
|
||||
|
||||
let editor: SimpleEditor | undefined = undefined
|
||||
let selected: string = 'retries'
|
||||
let selected: string = 'early-stop'
|
||||
|
||||
$: pickableProperties = getStepPropPicker(
|
||||
$flowStateStore,
|
||||
|
||||
Reference in New Issue
Block a user