mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-24 17:56:46 +00:00
Fix execute button on automation list (#5484)
This commit is contained in:
parent
471a5f8407
commit
1d02b69f52
@ -90,7 +90,10 @@ class HaAutomationPicker extends LitElement {
|
|||||||
columns.execute = {
|
columns.execute = {
|
||||||
title: "",
|
title: "",
|
||||||
template: (_info, automation) => html`
|
template: (_info, automation) => html`
|
||||||
<mwc-button .automation=${automation} @click=${this._execute}>
|
<mwc-button
|
||||||
|
.automation=${automation}
|
||||||
|
@click=${(ev) => this._execute(ev)}
|
||||||
|
>
|
||||||
${this.hass.localize("ui.card.automation.trigger")}
|
${this.hass.localize("ui.card.automation.trigger")}
|
||||||
</mwc-button>
|
</mwc-button>
|
||||||
`,
|
`,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user