From fc1c6cea24657a14de05128446993ffc43b0d626 Mon Sep 17 00:00:00 2001 From: Zack Barett Date: Mon, 14 Mar 2022 10:33:49 -0500 Subject: [PATCH] Fix: Changing Blueprint Automation Name (#12036) --- src/panels/config/automation/blueprint-automation-editor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panels/config/automation/blueprint-automation-editor.ts b/src/panels/config/automation/blueprint-automation-editor.ts index e134f3dacd..907ee3bb03 100644 --- a/src/panels/config/automation/blueprint-automation-editor.ts +++ b/src/panels/config/automation/blueprint-automation-editor.ts @@ -278,7 +278,7 @@ export class HaBlueprintAutomationEditor extends LitElement { if (!name) { return; } - const newVal = ev.detail.value; + const newVal = target.value; if ((this.config![name] || "") === newVal) { return; }