diff --git a/src/components/services/ping.jsx b/src/components/services/ping.jsx index b7337f199..37ef1a1db 100644 --- a/src/components/services/ping.jsx +++ b/src/components/services/ping.jsx @@ -32,12 +32,13 @@ export default function Ping({ group, service, style }) { } else { const ping = t("common.ms", { value: data.latency, style: "unit", unit: "millisecond", maximumFractionDigits: 0 }) statusTitle += ` ${data.status} (${ping})`; - colorClass = "text-emerald-500/80 lowercase" + colorClass = "text-emerald-500/80" if (style === "basic") { statusText = t("ping.up") } else { statusText = ping + colorClass += " lowercase" } }