refactor(control): use default instead of case null in display_status_to_info

hopefully will close#42
This commit is contained in:
E44
2026-06-10 22:16:06 +02:00
parent 0a9d3af3eb
commit d969c041d0
+1 -1
View File
@@ -100,7 +100,7 @@ export function display_status_to_info(status: DisplayStatus): string {
return 'Lädt';
case 'host_offline':
return 'Offline';
case null:
default:
return '???';
}
}