1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-23 22:50:09 +03:00

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

(cherry picked from commit b66389a82ca9955dc949ba61d7bd9e633a793179)
This commit is contained in:
Frederick Borges 2022-03-07 19:43:00 +01:00 committed by Tino Vazquez
parent 0c6b884313
commit 3fd12397ac
No known key found for this signature in database
GPG Key ID: 14201E424D02047E

View File

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