diff --git a/frontend/src/pages/Dashboard.jsx b/frontend/src/pages/Dashboard.jsx index ab0d3f1..2b58ebf 100644 --- a/frontend/src/pages/Dashboard.jsx +++ b/frontend/src/pages/Dashboard.jsx @@ -1154,7 +1154,10 @@ const Dashboard = () => { return ( <> {cardGroups.map((group, groupIndex) => ( -
{dns} @@ -510,7 +510,7 @@ const HostDetail = () => {
{iface.name}
@@ -699,7 +699,7 @@ const HostDetail = () => {
{host.load_average
.filter((load) => load != null)
.map((load, index) => (
-
+
{typeof load === "number"
? load.toFixed(2)
: String(load)}
@@ -727,7 +727,7 @@ const HostDetail = () => {