diff --git a/public/locales/en/common.json b/public/locales/en/common.json index a29bccd1f..92f429264 100755 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -64,6 +64,7 @@ "offline": "Offline", "error": "Error", "unknown": "Unknown", + "healthy": "Healthy", "starting": "Starting", "unhealthy": "Unhealthy", "not_found": "Not Found", diff --git a/src/components/services/status.jsx b/src/components/services/status.jsx index dba30f5b1..70cad6b27 100644 --- a/src/components/services/status.jsx +++ b/src/components/services/status.jsx @@ -33,11 +33,13 @@ export default function Status({ service }) { if (!data.health) { statusLabel = data.status.replace("running", t("docker.running")) + } else { + statusLabel = data.health === "healthy" ? t("docker.healthy") : data.health } return ( -
-
{data.health || statusLabel}
+
+
{statusLabel}
); }