From 313b984a5318e8e7972f98a6de5617d8eee0cf4c Mon Sep 17 00:00:00 2001 From: Sean Mooney Date: Tue, 1 Oct 2019 04:11:44 -0400 Subject: [PATCH] Add missing domain icons (#3836) `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 3a1c5c720b..9942a6d963 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 => {