diff --git a/src/common/entity/sensor_icon.ts b/src/common/entity/sensor_icon.ts index de741888b7..3a04fa823c 100644 --- a/src/common/entity/sensor_icon.ts +++ b/src/common/entity/sensor_icon.ts @@ -9,6 +9,7 @@ const fixedDeviceClassIcons = { temperature: "hass:thermometer", pressure: "hass:gauge", power: "hass:flash", + signal_strength: "hass:wifi", }; export default function sensorIcon(state: HassEntity) { diff --git a/src/util/hass-attributes-util.js b/src/util/hass-attributes-util.js index 4740fea291..c6eeb30d4c 100644 --- a/src/util/hass-attributes-util.js +++ b/src/util/hass-attributes-util.js @@ -34,6 +34,7 @@ hassAttributeUtil.DOMAIN_DEVICE_CLASS = { "temperature", "pressure", "power", + "signal_strength", ], };