mirror of https://github.com/apache/cloudstack.git
ui: Fix UI issue when deploying VM with rootdisksize (GB now, not in bytes) (#5150)
This commit is contained in:
parent
3a51540c24
commit
53c2e19d5f
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue