From b8efb8645453b4ae117cc87e69b047cf2accfa2e Mon Sep 17 00:00:00 2001 From: Sean Mooney Date: Mon, 30 Sep 2019 21:56:18 -0400 Subject: [PATCH] Add missing domain icons `persistent_notification` and `zone` were both missing domain icons. --- src/common/entity/domain_icon.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/entity/domain_icon.ts b/src/common/entity/domain_icon.ts index 3a1c5c720bcf..9942a6d96322 100644 --- a/src/common/entity/domain_icon.ts +++ b/src/common/entity/domain_icon.ts @@ -30,6 +30,7 @@ const fixedIcons = { light: "hass:lightbulb", mailbox: "hass:mailbox", notify: "hass:comment-alert", + persistent_notification: "hass:bell", person: "hass:account", plant: "hass:flower", proximity: "hass:apple-safari", @@ -46,6 +47,7 @@ const fixedIcons = { water_heater: "hass:thermometer", weather: "hass:weather-cloudy", weblink: "hass:open-in-new", + zone: "hass:map-marker", }; export const domainIcon = (domain: string, state?: string): string => {