diff --git a/src/panels/config/automation/blueprint-automation-editor.ts b/src/panels/config/automation/blueprint-automation-editor.ts
index 069376c4ba..cb69701510 100644
--- a/src/panels/config/automation/blueprint-automation-editor.ts
+++ b/src/panels/config/automation/blueprint-automation-editor.ts
@@ -64,6 +64,9 @@ export class HaBlueprintAutomationEditor extends LitElement {
`
: ""}
+ ${this.config.description
+ ? html`
${this.config.description}
`
+ : ""}
{
const id = this.automationId || String(Date.now());
- if (!this._config!.alias) {
+ if (!this.automationId) {
await this._promptAutomationAlias();
if (!this._config!.alias) {
showAlertDialog(this, {
diff --git a/src/panels/config/automation/manual-automation-editor.ts b/src/panels/config/automation/manual-automation-editor.ts
index 340b9e33eb..ebe14f3e1d 100644
--- a/src/panels/config/automation/manual-automation-editor.ts
+++ b/src/panels/config/automation/manual-automation-editor.ts
@@ -73,6 +73,9 @@ export class HaManualAutomationEditor extends LitElement {
`
: ""}
+ ${this.config.description
+ ? html`${this.config.description}
`
+ : ""}