From 836844a312b776f881ea86d37e65314c70c7fc6b Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 7 Mar 2019 10:53:24 -0800 Subject: [PATCH 1/2] Fix checking cloudhooks exist (#2893) --- src/data/cloud.ts | 1 + src/panels/config/cloud/cloud-webhooks.ts | 13 ++++++------- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/data/cloud.ts b/src/data/cloud.ts index 150e92f731..772a590472 100644 --- a/src/data/cloud.ts +++ b/src/data/cloud.ts @@ -4,6 +4,7 @@ export interface CloudWebhook { webhook_id: string; cloudhook_id: string; cloudhook_url: string; + managed?: boolean; } export const createCloudhook = (hass: HomeAssistant, webhookId: string) => diff --git a/src/panels/config/cloud/cloud-webhooks.ts b/src/panels/config/cloud/cloud-webhooks.ts index 5f8f149a9e..7d4ec3581b 100644 --- a/src/panels/config/cloud/cloud-webhooks.ts +++ b/src/panels/config/cloud/cloud-webhooks.ts @@ -121,9 +121,9 @@ export class CloudWebhooks extends LitElement { ` : this._cloudHooks![entry.webhook_id] ? html` - Manage + + Manage + ` : html` Date: Thu, 7 Mar 2019 10:53:56 -0800 Subject: [PATCH 2/2] Bumped version to 20190305.1 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f0773df4f8..7fa17ac4f7 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name="home-assistant-frontend", - version="20190305.0", + version="20190305.1", description="The Home Assistant frontend", url="https://github.com/home-assistant/home-assistant-polymer", author="The Home Assistant Authors",