1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

F #5516: Fix increment size (#2391)

This commit is contained in:
Frederick Borges 2022-12-02 11:54:38 +01:00 committed by GitHub
parent 8942bcf659
commit e4199c278e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,7 +64,7 @@ define(function(require){
increments.forEach(function(increment){
html += TemplateHTML({
id: increment.ID,
size: Humanize.sizeFromB(increment.SIZE),
size: Humanize.sizeFromMB(increment.SIZE),
date: Humanize.prettyTimeDatatable(increment.DATE),
type: increment.TYPE
})