From f6f829b9f092daaa92bf7bc532c66fcd151f8ea1 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Thu, 15 Sep 2022 22:15:26 +0200 Subject: [PATCH] remove tooltip --- frontend/src/lib/components/ArgInput.svelte | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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}