mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-25 18:26:35 +00:00
stopPropagation on automation moveUp/moveDown (#19804)
* stopPropagation on automation moveUp/moveDown * also conditions and triggers
This commit is contained in:
parent
8136cc8008
commit
84938ccc94
@ -203,12 +203,14 @@ export default class HaAutomationAction extends LitElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private _moveUp(ev) {
|
private _moveUp(ev) {
|
||||||
|
ev.stopPropagation();
|
||||||
const index = (ev.target as any).index;
|
const index = (ev.target as any).index;
|
||||||
const newIndex = index - 1;
|
const newIndex = index - 1;
|
||||||
this._move(index, newIndex);
|
this._move(index, newIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
private _moveDown(ev) {
|
private _moveDown(ev) {
|
||||||
|
ev.stopPropagation();
|
||||||
const index = (ev.target as any).index;
|
const index = (ev.target as any).index;
|
||||||
const newIndex = index + 1;
|
const newIndex = index + 1;
|
||||||
this._move(index, newIndex);
|
this._move(index, newIndex);
|
||||||
|
@ -227,12 +227,14 @@ export default class HaAutomationCondition extends LitElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private _moveUp(ev) {
|
private _moveUp(ev) {
|
||||||
|
ev.stopPropagation();
|
||||||
const index = (ev.target as any).index;
|
const index = (ev.target as any).index;
|
||||||
const newIndex = index - 1;
|
const newIndex = index - 1;
|
||||||
this._move(index, newIndex);
|
this._move(index, newIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
private _moveDown(ev) {
|
private _moveDown(ev) {
|
||||||
|
ev.stopPropagation();
|
||||||
const index = (ev.target as any).index;
|
const index = (ev.target as any).index;
|
||||||
const newIndex = index + 1;
|
const newIndex = index + 1;
|
||||||
this._move(index, newIndex);
|
this._move(index, newIndex);
|
||||||
|
@ -180,12 +180,14 @@ export default class HaAutomationTrigger extends LitElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private _moveUp(ev) {
|
private _moveUp(ev) {
|
||||||
|
ev.stopPropagation();
|
||||||
const index = (ev.target as any).index;
|
const index = (ev.target as any).index;
|
||||||
const newIndex = index - 1;
|
const newIndex = index - 1;
|
||||||
this._move(index, newIndex);
|
this._move(index, newIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
private _moveDown(ev) {
|
private _moveDown(ev) {
|
||||||
|
ev.stopPropagation();
|
||||||
const index = (ev.target as any).index;
|
const index = (ev.target as any).index;
|
||||||
const newIndex = index + 1;
|
const newIndex = index + 1;
|
||||||
this._move(index, newIndex);
|
this._move(index, newIndex);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user