fix: fix early return sync on existing flows

This commit is contained in:
Ruben Fiszel
2023-12-01 13:18:12 +01:00
parent 4778c0522d
commit 482ba6c5aa
2 changed files with 3 additions and 2 deletions
@@ -171,11 +171,11 @@
on:click={() => picker?.openDrawer()}
size="xs"
variant="border"
color="blue"
color="light"
startIcon={{ icon: GitFork }}
btnClasses="truncate"
>
Fork a script
Fork other script
</Button>
<Button
@@ -480,6 +480,7 @@
id="oauth_name"
bind:value={$flowStore.value.early_return}
>
<option value={undefined}>Node's id</option>
{#each $flowStore.value?.modules?.map((x) => x.id) as name}
<option value={name}>{name}</option>
{/each}