Don't display keyboard shortcut hints in quickbar if keyboard shortcuts are disabled (#20527)

Fix forgotten hint shortcut tip
This commit is contained in:
Simon Lamon 2024-04-15 20:20:45 +02:00 committed by GitHub
parent 6516597c93
commit 25c702ad2b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -640,7 +640,9 @@ class HUIRoot extends LitElement {
private _showQuickBar(): void {
showQuickBar(this, {
commandMode: false,
hint: this.hass.localize("ui.tips.key_e_hint"),
hint: this.hass.enableShortcuts
? this.hass.localize("ui.tips.key_e_hint")
: undefined,
});
}