mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-23 01:06:35 +00:00
Quick bar keyboard shortcut international support (#12892)
This commit is contained in:
parent
2fdd50f45f
commit
e386942ea7
@ -48,9 +48,9 @@ export default <T extends Constructor<HassElement>>(superClass: T) =>
|
|||||||
|
|
||||||
private _registerShortcut() {
|
private _registerShortcut() {
|
||||||
tinykeys(window, {
|
tinykeys(window, {
|
||||||
e: (ev) => this._showQuickBar(ev),
|
KeyE: (ev) => this._showQuickBar(ev),
|
||||||
c: (ev) => this._showQuickBar(ev, true),
|
KeyC: (ev) => this._showQuickBar(ev, true),
|
||||||
m: (ev) => this._createMyLink(ev),
|
KeyM: (ev) => this._createMyLink(ev),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user