From 5ab6121581623909aee19fec8e3e39f744a38a98 Mon Sep 17 00:00:00 2001 From: Bram Kragten Date: Thu, 24 Feb 2022 23:24:32 +0100 Subject: [PATCH] Fix quickbar showing on ha-select (#11845) --- src/state/quick-bar-mixin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state/quick-bar-mixin.ts b/src/state/quick-bar-mixin.ts index b9e6997182..d70d0d1b4d 100644 --- a/src/state/quick-bar-mixin.ts +++ b/src/state/quick-bar-mixin.ts @@ -58,7 +58,7 @@ export default >(superClass: T) => return false; } - if (el.parentElement.tagName === "ha-select") { + if (el.parentElement.tagName === "HA-SELECT") { return false; }