This is an automated email from the ASF dual-hosted git repository. dahn pushed a commit to branch 4.19 in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.19 by this push: new b0ac78705d4 Add IOPS to disk offerings details (#8447) b0ac78705d4 is described below commit b0ac78705d45c63e6f9c64001aaa65114c385323 Author: Henrique Sato <henriquesato2...@gmail.com> AuthorDate: Tue Feb 6 07:36:43 2024 -0300 Add IOPS to disk offerings details (#8447) Co-authored-by: Henrique Sato <henrique.s...@scclouds.com.br> --- ui/src/config/section/offering.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/config/section/offering.js b/ui/src/config/section/offering.js index c44de61fb79..27e7d32073a 100644 --- a/ui/src/config/section/offering.js +++ b/ui/src/config/section/offering.js @@ -155,7 +155,7 @@ export default { }, columns: ['name', 'displaytext', 'disksize', 'domain', 'zone', 'order'], details: () => { - var fields = ['name', 'id', 'displaytext', 'disksize', 'provisioningtype', 'storagetype', 'iscustomized', 'disksizestrictness', 'iscustomizediops', 'tags', 'domain', 'zone', 'created', 'encrypt'] + var fields = ['name', 'id', 'displaytext', 'disksize', 'provisioningtype', 'storagetype', 'iscustomized', 'disksizestrictness', 'iscustomizediops', 'diskIopsReadRate', 'diskIopsWriteRate', 'diskBytesReadRate', 'diskBytesWriteRate', 'miniops', 'maxiops', 'tags', 'domain', 'zone', 'created', 'encrypt'] if (store.getters.apis.createDiskOffering && store.getters.apis.createDiskOffering.params.filter(x => x.name === 'storagepolicy').length > 0) { fields.splice(6, 0, 'vspherestoragepolicy')