Browse Source

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

Amy0104 2 years ago
parent
commit
a6fc70cdd1
1 changed files with 1 additions and 2 deletions
  1. 1 2
      dolphinscheduler-ui/src/common/common.ts

+ 1 - 2
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 = [