Add icon translations to Weatherkit (#112354)

This commit is contained in:
Joost Lekkerkerker 2024-03-05 14:05:13 +01:00 committed by GitHub
parent 835cce4de9
commit 0b6d004b9c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View File

@ -0,0 +1,9 @@
{
"entity": {
"sensor": {
"pressure_trend": {
"default": "mdi:gauge"
}
}
}
}

View File

@ -28,7 +28,6 @@ SENSORS = (
SensorEntityDescription(
key="pressureTrend",
device_class=SensorDeviceClass.ENUM,
icon="mdi:gauge",
options=["rising", "falling", "steady"],
translation_key="pressure_trend",
),