diff --git a/src/ui/apps/Server/Server.tsx b/src/ui/apps/Server/Server.tsx index 27cb52d0..be6a4470 100644 --- a/src/ui/apps/Server/Server.tsx +++ b/src/ui/apps/Server/Server.tsx @@ -170,7 +170,7 @@ export function Server({
{/* CPU */}
-

+

{(() => { const pct = metrics?.cpu?.percent; @@ -192,7 +192,7 @@ export function Server({ {/* Memory */}
-

+

{(() => { const pct = metrics?.memory?.percent; @@ -212,7 +212,7 @@ export function Server({ {/* HDD */}
-

+

{(() => { const pct = metrics?.disk?.percent; @@ -221,7 +221,7 @@ export function Server({ const pctText = (typeof pct === 'number') ? `${pct}%` : 'N/A'; const usedText = used ?? 'N/A'; const totalText = total ?? 'N/A'; - return `HD Space - ${pctText} (${usedText} of ${totalText})`; + return `HDD Space - ${pctText} (${usedText} of ${totalText})`; })()}