Merge pull request #5487 from home-assistant/dev

20200407.1
This commit is contained in:
Bram Kragten 2020-04-07 21:18:38 +02:00 committed by GitHub
commit dd49ea6f20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name="home-assistant-frontend",
version="20200407.0",
version="20200407.1",
description="The Home Assistant frontend",
url="https://github.com/home-assistant/home-assistant-polymer",
author="The Home Assistant Authors",

View File

@ -90,7 +90,10 @@ class HaAutomationPicker extends LitElement {
columns.execute = {
title: "",
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")}
</mwc-button>
`,