From 2eaa4bb175ac28a39c5b7f913b25b65051da5f54 Mon Sep 17 00:00:00 2001 From: kokodev Date: Mon, 14 Oct 2024 08:53:16 -0700 Subject: [PATCH] i didn't fix it appernelty --- .../components/dashboard/ServerRow.tsx | 50 +++++++++---------- 1 file changed, 24 insertions(+), 26 deletions(-) diff --git a/resources/scripts/components/dashboard/ServerRow.tsx b/resources/scripts/components/dashboard/ServerRow.tsx index b46ac8e25..c57b24280 100644 --- a/resources/scripts/components/dashboard/ServerRow.tsx +++ b/resources/scripts/components/dashboard/ServerRow.tsx @@ -131,36 +131,34 @@ export default ({ server, className }: { server: Server; className?: string }) = {stats && ( -
- - {/* CPU Indicator */} -
-
- - - {stats.cpuUsagePercent.toFixed(2)}% - -
+
+ {/* CPU Indicator */} +
+
+ + + {stats.cpuUsagePercent.toFixed(2)}% +
- - {/* Memory Indicator */} -
-
- - - {bytesToString(stats.memoryUsageInBytes)} - -
+
+ + {/* Memory Indicator */} +
+
+ + + {bytesToString(stats.memoryUsageInBytes)} +
+
- {/* Disk Indicator */} -
-
- - {bytesToString(stats?.diskUsageInBytes)} -
+ {/* Disk Indicator */} +
+
+ + {bytesToString(stats?.diskUsageInBytes)}
- +
)}