From a60bc73fea1308f14a8050444af2eac0a6536cdf Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Mon, 17 Jan 2022 13:07:42 -0800 Subject: [PATCH] fix(combo-box): name should be passed to input (#1014) Fixes #797 --- 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 2fb120c3..8e2318f1 100644 --- a/src/ComboBox/ComboBox.svelte +++ b/src/ComboBox/ComboBox.svelte @@ -230,7 +230,6 @@ ref.focus(); }}" id="{id}" - name="{name}" disabled="{disabled}" translateWithId="{translateWithId}" > @@ -249,6 +248,7 @@ placeholder="{placeholder}" id="{id}" value="{inputValue}" + name="{name}" {...$$restProps} class:bx--text-input="{true}" class:bx--text-input--light="{light}"