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

B #5560: Fix disk size not showing correctly in imported VMs (#1830)

This commit is contained in:
Frederick Borges 2022-03-07 19:43:00 +01:00 committed by GitHub
parent db847e2ffd
commit b66389a82c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -366,7 +366,7 @@ define(function(require) {
sizeStr += '-';
}
} else if (disk.SIZE){
sizeStr += disk.SIZE;
sizeStr += Humanize.sizeFromMB(disk.SIZE);
}
else {
sizeStr += '-';