Skip to content

Commit

Permalink
fix: popover content
Browse files Browse the repository at this point in the history
  • Loading branch information
hamster1963 committed Sep 19, 2024
1 parent 64d110b commit 8b096fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/ServerCardPopover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default function ServerCardPopover({
/>
<ServerCardPopoverCard
title="Mem"
content={`${formatBytes(host.MemTotal)} / ${formatBytes(status.MemUsed)}`}
content={`${formatBytes(status.MemUsed)} / ${formatBytes(host.MemTotal)}`}
/>
<ServerCardPopoverCard
title="STG"
Expand All @@ -55,7 +55,7 @@ export default function ServerCardPopover({
/>
<ServerCardPopoverCard
title="Network"
content={`${formatBytes(status.NetInTransfer)} / ${formatBytes(status.NetOutTransfer)}`}
content={`${formatBytes(status.NetOutTransfer)} / ${formatBytes(status.NetInTransfer)}`}
/>
<ServerCardPopoverCard
title="Load"
Expand Down

0 comments on commit 8b096fe

Please sign in to comment.