diff --git a/webui/src/components/utils/Selector.svelte b/webui/src/components/utils/Selector.svelte index 17f62df..cc636a1 100644 --- a/webui/src/components/utils/Selector.svelte +++ b/webui/src/components/utils/Selector.svelte @@ -130,8 +130,10 @@ } }, 200); $: { - updateOptions(inputValue); - addressToLabels = {}; + if (inputFocused) { + updateOptions(inputValue); + addressToLabels = {}; + } } let addressToLabels: { [key: string]: string[] } = {};