feat: enhance uptime display to show days and hours

This commit is contained in:
hamster1963 2025-03-16 11:02:09 +08:00
parent d2ab62efdc
commit b630505ca3

View File

@ -121,8 +121,8 @@ export default function ServerDetailClient({
<div className="text-xs"> <div className="text-xs">
{" "} {" "}
{uptime / 86400 >= 1 {uptime / 86400 >= 1
? `${(uptime / 86400).toFixed(0)} ${t("Days")}` ? `${Math.floor(uptime / 86400)} ${t("Days")} ${Math.floor((uptime % 86400) / 3600)} ${t("Hours")}`
: `${(uptime / 3600).toFixed(0)} ${t("Hours")}`} : `${Math.floor(uptime / 3600)} ${t("Hours")}`}
</div> </div>
</section> </section>
</CardContent> </CardContent>