From 9ca03791c9bc9b87244b1cdafa218b14b9f7e919 Mon Sep 17 00:00:00 2001 From: Simon Cambier Date: Thu, 10 Nov 2022 21:17:57 +0100 Subject: [PATCH] Fixed #117 --- src/components/InputSearch.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/InputSearch.svelte b/src/components/InputSearch.svelte index 8dab4a2..fa839e2 100644 --- a/src/components/InputSearch.svelte +++ b/src/components/InputSearch.svelte @@ -12,7 +12,7 @@ const dispatch = createEventDispatcher() $: { - if (initialValue && !initialSet) { + if (initialValue && !initialSet && !value) { initialSet = true value = initialValue selectInput()