mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-23 17:26:42 +00:00
Prevent mwc-list-item from opening up quick-bar (#10317)
This commit is contained in:
parent
b576c3de40
commit
bb2fe650ac
@ -58,6 +58,10 @@ export default <T extends Constructor<HassElement>>(superClass: T) =>
|
||||
return false;
|
||||
}
|
||||
|
||||
if (el.parentElement.tagName === "MWC-SELECT") {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (el.tagName !== "INPUT") {
|
||||
return true;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user