diff --git a/src/dialogs/quick-bar/ha-quick-bar.ts b/src/dialogs/quick-bar/ha-quick-bar.ts index aeb6520cf4..2b86ca4351 100644 --- a/src/dialogs/quick-bar/ha-quick-bar.ts +++ b/src/dialogs/quick-bar/ha-quick-bar.ts @@ -552,6 +552,18 @@ export class QuickBar extends LitElement { ), }); + // Add "homeassistant.reload_all" + commands.push({ + primaryText: this.hass.localize( + "ui.dialogs.quick-bar.commands.reload.all" + ), + action: () => this.hass.callService("homeassistant", "reload_all"), + iconPath: mdiReload, + categoryText: this.hass.localize( + "ui.dialogs.quick-bar.commands.types.reload" + ), + }); + return commands.map((command) => ({ ...command, categoryKey: "reload", diff --git a/src/panels/developer-tools/yaml_configuration/developer-yaml-config.ts b/src/panels/developer-tools/yaml_configuration/developer-yaml-config.ts index 1686b8cb8d..933d42c730 100644 --- a/src/panels/developer-tools/yaml_configuration/developer-yaml-config.ts +++ b/src/panels/developer-tools/yaml_configuration/developer-yaml-config.ts @@ -121,6 +121,16 @@ export class DeveloperYamlConfig extends LitElement { "ui.panel.developer-tools.tabs.yaml.section.reloading.introduction" )} +
+ ${this.hass.localize( + "ui.panel.developer-tools.tabs.yaml.section.reloading.all" + )} + +