ui: Fix UI issue when deploying VM with rootdisksize (GB now, not in bytes) (#5150)

This commit is contained in:
Gabriel Beims Bräscher 2021-06-24 02:33:46 -03:00 committed by GitHub
parent 3a51540c24
commit 53c2e19d5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1966,7 +1966,7 @@ export default {
}
}
if (offering && offering.rootdisksize > 0) {
this.rootDiskSizeFixed = offering.rootdisksize / (1024 * 1024 * 1024.0).toFixed(2)
this.rootDiskSizeFixed = offering.rootdisksize
this.showRootDiskSizeChanger = false
}
}