diff --git a/frontend/src/lib/components/ArgInput.svelte b/frontend/src/lib/components/ArgInput.svelte index 478d6ac1f6..98b4caea55 100644 --- a/frontend/src/lib/components/ArgInput.svelte +++ b/frontend/src/lib/components/ArgInput.svelte @@ -224,7 +224,7 @@ {:else if inputCat == 'list'}
- {#each value ?? [] as v} + {#each value ?? [] as v, i}
{#if itemsType?.type == 'number'} @@ -232,7 +232,7 @@ fileChanged(x, (val) => (v = val))} + on:change={(x) => fileChanged(x, (val) => (value[i] = val))} multiple={false} /> {:else} @@ -344,7 +344,7 @@ /> {/if} {#if !required && inputCat != 'resource-object'} - + {/if}