Change: use glances memory available instead of free (#5923)

This commit is contained in:
shamoon
2025-11-03 15:32:36 -08:00
committed by GitHub
parent 937efc9f1b
commit 1383e22acd
2 changed files with 6 additions and 6 deletions

View File

@@ -113,7 +113,7 @@ export default function Widget({ options }) {
<Resource
icon={FaMemory}
value={t("common.bytes", {
value: data.mem.free,
value: data.mem.available,
maximumFractionDigits: 1,
binary: true,
})}