From bb2fe650ace4692a984dad1f3a30044d6a5796a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Mon, 18 Oct 2021 22:04:50 +0200 Subject: [PATCH] Prevent mwc-list-item from opening up quick-bar (#10317) --- src/state/quick-bar-mixin.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/state/quick-bar-mixin.ts b/src/state/quick-bar-mixin.ts index 445a9e3ee5..a0e98b327c 100644 --- a/src/state/quick-bar-mixin.ts +++ b/src/state/quick-bar-mixin.ts @@ -58,6 +58,10 @@ export default >(superClass: T) => return false; } + if (el.parentElement.tagName === "MWC-SELECT") { + return false; + } + if (el.tagName !== "INPUT") { return true; }