From c64d88d8b5b26b7edcec3089d1f079ab122f41ff Mon Sep 17 00:00:00 2001 From: Zack Arnett Date: Mon, 14 Sep 2020 14:43:16 -0500 Subject: [PATCH] fix action default --- src/panels/lovelace/components/hui-action-editor.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/panels/lovelace/components/hui-action-editor.ts b/src/panels/lovelace/components/hui-action-editor.ts index dea53bd0d3..74e91de2b4 100644 --- a/src/panels/lovelace/components/hui-action-editor.ts +++ b/src/panels/lovelace/components/hui-action-editor.ts @@ -64,8 +64,9 @@ export class HuiActionEditor extends LitElement { slot="dropdown-content" .selected="${this.actions.indexOf(this._action)}" > + ${this.actions.map((action) => { - return html` ${action} `; + return html`${action}`; })}