From 58935599516a3fba1592e7c611de99555e0a75e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20Hansl=C3=ADk?= Date: Mon, 13 Sep 2021 12:50:57 +0200 Subject: [PATCH] New icon for "on" state of smoke device (#10013) --- src/common/entity/binary_sensor_icon.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/entity/binary_sensor_icon.ts b/src/common/entity/binary_sensor_icon.ts index ef90cd64ff..da18e0d01f 100644 --- a/src/common/entity/binary_sensor_icon.ts +++ b/src/common/entity/binary_sensor_icon.ts @@ -22,8 +22,9 @@ export const binarySensorIcon = (state?: string, stateObj?: HassEntity) => { case "gas": case "problem": case "safety": - case "smoke": return is_off ? "hass:check-circle" : "hass:alert-circle"; + case "smoke": + return is_off ? "hass:check-circle" : "hass:smoke"; case "heat": return is_off ? "hass:thermometer" : "hass:fire"; case "light":