From 27bdf801687f8c76cd09320dcd5e976af8d2e194 Mon Sep 17 00:00:00 2001 From: Paul Bottein Date: Thu, 26 Sep 2024 09:59:48 +0200 Subject: [PATCH] Fix automation drag and drop (#22093) --- src/panels/config/automation/manual-automation-editor.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/panels/config/automation/manual-automation-editor.ts b/src/panels/config/automation/manual-automation-editor.ts index 6c81607fe1..23855571d1 100644 --- a/src/panels/config/automation/manual-automation-editor.ts +++ b/src/panels/config/automation/manual-automation-editor.ts @@ -90,7 +90,7 @@ export class HaManualAutomationEditor extends LitElement { role="region" aria-labelledby="triggers-heading" .triggers=${this.config.triggers || []} - .path=${["trigger"]} + .path=${["triggers"]} @value-changed=${this._triggerChanged} @item-moved=${this._itemMoved} .hass=${this.hass} @@ -132,7 +132,7 @@ export class HaManualAutomationEditor extends LitElement { role="region" aria-labelledby="conditions-heading" .conditions=${this.config.conditions || []} - .path=${["condition"]} + .path=${["conditions"]} @value-changed=${this._conditionChanged} @item-moved=${this._itemMoved} .hass=${this.hass} @@ -172,7 +172,7 @@ export class HaManualAutomationEditor extends LitElement { role="region" aria-labelledby="actions-heading" .actions=${this.config.actions || []} - .path=${["action"]} + .path=${["actions"]} @value-changed=${this._actionChanged} @item-moved=${this._itemMoved} .hass=${this.hass}