[Fix][UI] Fix bytesToSize function calculation error. (#10628)
This commit is contained in:
parent
7dd7e4afe8
commit
7d91ad3c54
|
|
@ -24,7 +24,7 @@ const bytesToSize = (bytes) => {
|
|||
const sizes = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']
|
||||
const i = Math.floor(Math.log(bytes) / Math.log(k))
|
||||
|
||||
return parseInt((bytes / Math.pow(k, i)).toPrecision(3)) + ' ' + sizes[i]
|
||||
return parseFloat((bytes / Math.pow(k, i)).toPrecision(3)) + ' ' + sizes[i]
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue