From a68381a4d9c75114899ae5686115710e02113fa1 Mon Sep 17 00:00:00 2001 From: Paul Bottein Date: Tue, 26 Sep 2023 14:27:27 +0200 Subject: [PATCH] Clear quick bar items with closing the quick bar dialog (#18025) --- src/dialogs/quick-bar/ha-quick-bar.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dialogs/quick-bar/ha-quick-bar.ts b/src/dialogs/quick-bar/ha-quick-bar.ts index 5db6f06289..a8120a27ea 100644 --- a/src/dialogs/quick-bar/ha-quick-bar.ts +++ b/src/dialogs/quick-bar/ha-quick-bar.ts @@ -119,6 +119,8 @@ export class QuickBar extends LitElement { this._focusSet = false; this._filter = ""; this._search = ""; + this._entityItems = undefined; + this._commandItems = undefined; fireEvent(this, "dialog-closed", { dialog: this.localName }); }