mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Calc gigabytes by 1024 (#1075)
This commit is contained in:
parent
c56a8b3465
commit
3f55080a27
1 changed files with 1 additions and 1 deletions
|
|
@ -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) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue