From dae107d3e3d14f582a00cd271d6845fda836d28f Mon Sep 17 00:00:00 2001 From: karwosts <32912880+karwosts@users.noreply.github.com> Date: Mon, 17 Apr 2023 02:16:16 -0700 Subject: [PATCH] Fix ha-selector-select filter for multiple values case (#16093) --- src/components/ha-selector/ha-selector-select.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ha-selector/ha-selector-select.ts b/src/components/ha-selector/ha-selector-select.ts index 0d9222a266..be076d6a12 100644 --- a/src/components/ha-selector/ha-selector-select.ts +++ b/src/components/ha-selector/ha-selector-select.ts @@ -135,7 +135,7 @@ export class HaSelectSelector extends LitElement { .helper=${this.helper} .disabled=${this.disabled} .required=${this.required && !value.length} - .value=${this._filter} + .value=${""} .items=${optionItems} .allowCustomValue=${this.selector.select.custom_value ?? false} @filter-changed=${this._filterChanged}