diff --git a/src/widgets/glances/metrics/memory.jsx b/src/widgets/glances/metrics/memory.jsx index d810ccf91..7ff3dda47 100644 --- a/src/widgets/glances/metrics/memory.jsx +++ b/src/widgets/glances/metrics/memory.jsx @@ -50,6 +50,7 @@ export default function Component({ service }) { formatter={(value) => t("common.bytes", { value, maximumFractionDigits: 0, + binary: true, })} /> @@ -60,6 +61,7 @@ export default function Component({ service }) { {t("common.bytes", { value: data.free, maximumFractionDigits: 0, + binary: true, })} {t("resources.free")} )} @@ -69,6 +71,7 @@ export default function Component({ service }) { {t("common.bytes", { value: data.total, maximumFractionDigits: 0, + binary: true, })} {t("resources.total")} )} @@ -80,6 +83,7 @@ export default function Component({ service }) { {t("common.bytes", { value: data.used, maximumFractionDigits: 0, + binary: true, })} {t("resources.used")}