Fixes wrong values used in RAM usage section (#344)

This commit is contained in:
Paco
2026-02-06 02:42:00 +00:00
committed by GitHub
parent af08472e45
commit d6920700cb
4 changed files with 6 additions and 4 deletions
+3 -1
View File
@@ -131,7 +131,9 @@
<div class="flex-1 text-sm grow text-right self-center">
{{
$t("home.admin.availableRam", {
freeRam: formatBytes(systemData.freeRam),
usedRam: formatBytes(
systemData.totalRam - systemData.freeRam,
),
totalRam: formatBytes(systemData.totalRam),
})
}}