Clean up updater remains (#19501)

This commit is contained in:
Franck Nijhof 2024-01-21 23:07:40 +01:00 committed by GitHub
parent 55a5739e77
commit 69139b35e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 6 deletions

View File

@ -18,7 +18,6 @@ import {
mdiChatSleep, mdiChatSleep,
mdiClipboardList, mdiClipboardList,
mdiClock, mdiClock,
mdiCloudUpload,
mdiCog, mdiCog,
mdiCommentAlert, mdiCommentAlert,
mdiCounter, mdiCounter,
@ -127,7 +126,6 @@ export const FIXED_DOMAIN_ICONS = {
time: mdiClock, time: mdiClock,
timer: mdiTimerOutline, timer: mdiTimerOutline,
tts: mdiSpeakerMessage, tts: mdiSpeakerMessage,
updater: mdiCloudUpload,
vacuum: mdiRobotVacuum, vacuum: mdiRobotVacuum,
wake_word: mdiChatSleep, wake_word: mdiChatSleep,
weather: mdiWeatherPartlyCloudy, weather: mdiWeatherPartlyCloudy,

View File

@ -174,7 +174,6 @@ export class HaStateLabelBadge extends LitElement {
case "scene": case "scene":
case "sun": case "sun":
case "timer": case "timer":
case "updater":
return null; return null;
// @ts-expect-error we don't break and go to default // @ts-expect-error we don't break and go to default
case "sensor": case "sensor":
@ -208,7 +207,6 @@ export class HaStateLabelBadge extends LitElement {
case "alarm_control_panel": case "alarm_control_panel":
case "binary_sensor": case "binary_sensor":
case "device_tracker": case "device_tracker":
case "updater":
case "person": case "person":
case "scene": case "scene":
case "sun": case "sun":
@ -285,8 +283,7 @@ export class HaStateLabelBadge extends LitElement {
--ha-label-badge-label-text-transform: none; --ha-label-badge-label-text-transform: none;
} }
ha-label-badge.binary_sensor, ha-label-badge.binary_sensor {
ha-label-badge.updater {
--ha-label-badge-color: var(--label-badge-blue); --ha-label-badge-color: var(--label-badge-blue);
} }