From 570364bda446ac33a3d1129cd27a1765495f7c87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Istv=C3=A1n=20Pat=C3=B3?= Date: Wed, 1 Dec 2021 17:15:39 +0100 Subject: [PATCH] fix: default value settings (init) on inputValue --- src/ComboBox/ComboBox.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ComboBox/ComboBox.svelte b/src/ComboBox/ComboBox.svelte index 4696a408..63f3230d 100644 --- a/src/ComboBox/ComboBox.svelte +++ b/src/ComboBox/ComboBox.svelte @@ -108,7 +108,7 @@ const dispatch = createEventDispatcher(); let selectedId = undefined; - let inputValue = ""; + let inputValue = value; let highlightedIndex = -1; function change(dir) {