diff --git a/dolphinscheduler-ui/src/common/common.ts b/dolphinscheduler-ui/src/common/common.ts index ae644aeb01..2f5ed4d709 100644 --- a/dolphinscheduler-ui/src/common/common.ts +++ b/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 = [