From 3f55080a27aa1931b67aeffded05122688f798ad Mon Sep 17 00:00:00 2001 From: Jason Meller Date: Fri, 20 Jan 2017 20:44:58 -0500 Subject: [PATCH] Calc gigabytes by 1024 (#1075) --- frontend/components/hosts/HostDetails/helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/hosts/HostDetails/helpers.js b/frontend/components/hosts/HostDetails/helpers.js index 3769c38455..587b54d386 100644 --- a/frontend/components/hosts/HostDetails/helpers.js +++ b/frontend/components/hosts/HostDetails/helpers.js @@ -1,6 +1,6 @@ import moment from 'moment'; -const BYTES_PER_GIGABYTE = 1000000000; +const BYTES_PER_GIGABYTE = 1074000000; const NANOSECONDS_PER_MILLISECOND = 1000000; const inGigaBytes = (bytes) => {