diff --git a/src/panels/config/automation/ha-automation-editor.ts b/src/panels/config/automation/ha-automation-editor.ts
index 2c6429d642..c8ca54c3d7 100644
--- a/src/panels/config/automation/ha-automation-editor.ts
+++ b/src/panels/config/automation/ha-automation-editor.ts
@@ -486,7 +486,7 @@ export class HaAutomationEditor extends KeyboardShortcutMixin(LitElement) {
value.valid
? ""
: html`${this.hass.localize(
- `ui.panel.config.automation.editor.${key}s.header`
+ `ui.panel.config.automation.editor.${key}s.name`
)}:
${value.error}
`
);
diff --git a/src/panels/config/automation/manual-automation-editor.ts b/src/panels/config/automation/manual-automation-editor.ts
index e0417269b6..291d308540 100644
--- a/src/panels/config/automation/manual-automation-editor.ts
+++ b/src/panels/config/automation/manual-automation-editor.ts
@@ -1,8 +1,9 @@
import "@material/mwc-button/mwc-button";
import { mdiHelpCircle } from "@mdi/js";
import { HassEntity } from "home-assistant-js-websocket";
-import { css, CSSResultGroup, html, LitElement } from "lit";
+import { css, CSSResultGroup, html, LitElement, nothing } from "lit";
import { customElement, property } from "lit/decorators";
+import { ensureArray } from "../../../common/array/ensure-array";
import { fireEvent } from "../../../common/dom/fire_event";
import "../../../components/ha-card";
import "../../../components/ha-icon-button";
@@ -83,6 +84,14 @@ export class HaManualAutomationEditor extends LitElement {
>
+ ${!this.hass.userData?.showAdvanced &&
+ !ensureArray(this.config.trigger)?.length
+ ? html`
+ ${this.hass.localize( + "ui.panel.config.automation.editor.triggers.description" + )} +
` + : nothing}+ ${this.hass.localize( + "ui.panel.config.automation.editor.conditions.description", + { user: this.hass.user?.name } + )} +
` + : nothing}+ ${this.hass.localize( + "ui.panel.config.automation.editor.actions.description" + )} +
` + : nothing}