mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-27 19:26:36 +00:00
Fix automation drag and drop (#22093)
This commit is contained in:
parent
f70ce7491a
commit
27bdf80168
@ -90,7 +90,7 @@ export class HaManualAutomationEditor extends LitElement {
|
|||||||
role="region"
|
role="region"
|
||||||
aria-labelledby="triggers-heading"
|
aria-labelledby="triggers-heading"
|
||||||
.triggers=${this.config.triggers || []}
|
.triggers=${this.config.triggers || []}
|
||||||
.path=${["trigger"]}
|
.path=${["triggers"]}
|
||||||
@value-changed=${this._triggerChanged}
|
@value-changed=${this._triggerChanged}
|
||||||
@item-moved=${this._itemMoved}
|
@item-moved=${this._itemMoved}
|
||||||
.hass=${this.hass}
|
.hass=${this.hass}
|
||||||
@ -132,7 +132,7 @@ export class HaManualAutomationEditor extends LitElement {
|
|||||||
role="region"
|
role="region"
|
||||||
aria-labelledby="conditions-heading"
|
aria-labelledby="conditions-heading"
|
||||||
.conditions=${this.config.conditions || []}
|
.conditions=${this.config.conditions || []}
|
||||||
.path=${["condition"]}
|
.path=${["conditions"]}
|
||||||
@value-changed=${this._conditionChanged}
|
@value-changed=${this._conditionChanged}
|
||||||
@item-moved=${this._itemMoved}
|
@item-moved=${this._itemMoved}
|
||||||
.hass=${this.hass}
|
.hass=${this.hass}
|
||||||
@ -172,7 +172,7 @@ export class HaManualAutomationEditor extends LitElement {
|
|||||||
role="region"
|
role="region"
|
||||||
aria-labelledby="actions-heading"
|
aria-labelledby="actions-heading"
|
||||||
.actions=${this.config.actions || []}
|
.actions=${this.config.actions || []}
|
||||||
.path=${["action"]}
|
.path=${["actions"]}
|
||||||
@value-changed=${this._actionChanged}
|
@value-changed=${this._actionChanged}
|
||||||
@item-moved=${this._itemMoved}
|
@item-moved=${this._itemMoved}
|
||||||
.hass=${this.hass}
|
.hass=${this.hass}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user