Fix default icon for Withings sleep sensor (#37502)
The icon for Withings sleep sensor was using `mdi:bed` (which is correct for MDI v5.0.45 and later). However Home Assistant still uses an older version of Material Design Icons (4.9.95), so this `mdi:bed` icon was not displaying at all. It should be`mdi:hotel` instead, which you can see here: https://cdn.materialdesignicons.com/4.9.95/pull/37508/head
parent
3d08601796
commit
a882cfafb1
|
@ -450,7 +450,7 @@ WITHINGS_ATTRIBUTES = [
|
||||||
NotifyAppli.BED_IN,
|
NotifyAppli.BED_IN,
|
||||||
"In bed",
|
"In bed",
|
||||||
"",
|
"",
|
||||||
"mdi:bed",
|
"mdi:hotel",
|
||||||
BINARY_SENSOR_DOMAIN,
|
BINARY_SENSOR_DOMAIN,
|
||||||
True,
|
True,
|
||||||
UpdateType.WEBHOOK,
|
UpdateType.WEBHOOK,
|
||||||
|
|
Loading…
Reference in New Issue