From 9f030d1540608e0aa35c9d4165f17bc8c88df4f7 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 4 Oct 2023 22:46:31 -0700 Subject: [PATCH] Update ping.jsx --- src/components/services/ping.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/services/ping.jsx b/src/components/services/ping.jsx index b7337f19..37ef1a1d 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" } }