Browse Source

[Fix][UI] Fix bytesToSize function calculation error. (#10627)

3.1.0-release
Amy0104 3 years ago committed by GitHub
parent
commit
a6fc70cdd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      dolphinscheduler-ui/src/common/common.ts

3
dolphinscheduler-ui/src/common/common.ts

@ -46,8 +46,7 @@ export const bytesToSize = (bytes: number) => {
const k = 1024 // or 1024
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]
}
export const fileTypeArr = [

Loading…
Cancel
Save