diff --git a/lib/ui/home/home_ui.dart b/lib/ui/home/home_ui.dart index 45ca99a..0ed3356 100644 --- a/lib/ui/home/home_ui.dart +++ b/lib/ui/home/home_ui.dart @@ -237,13 +237,15 @@ class HomeUI extends BaseUI { item["status"] == "ok" ? FontAwesomeIcons.circleCheck : FluentIcons.error, - color: item["status"] == "ok" + color: (item["status"] == + "operational" || + item["status"] == "ok") ? Colors.green : Colors.red, - size: 20, + size: 18, ), ), - const SizedBox(width: 4), + const SizedBox(width: 3), Text( "${model.statusCnName[item["name"]] ?? item["name"]}", style: const TextStyle(fontSize: 13), diff --git a/lib/ui/home/home_ui_model.dart b/lib/ui/home/home_ui_model.dart index 3d2dfd4..b6f008b 100644 --- a/lib/ui/home/home_ui_model.dart +++ b/lib/ui/home/home_ui_model.dart @@ -55,6 +55,7 @@ class HomeUIModel extends BaseUIModel { "Platform": "平台", "Persistent Universe": "持续宇宙", "Electronic Access": "电子访问", + "Arena Commander": "竞技场指挥官" }; bool isRsiLauncherStarting = false;