This is an automated email from the ASF dual-hosted git repository.
rohit pushed a commit to branch 4.20
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.20 by this push:
new e9918ba15de ui: fix volume size not showing (#11328)
e9918ba15de is described below
commit e9918ba15de6e115ec4aa3528519b9b43daa26a3
Author: Abhishek Kumar <[email protected]>
AuthorDate: Tue Jul 29 17:12:31 2025 +0530
ui: fix volume size not showing (#11328)
Fixes #11321
Signed-off-by: Abhishek Kumar <[email protected]>
---
ui/src/config/section/storage.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ui/src/config/section/storage.js b/ui/src/config/section/storage.js
index a86650874ba..12d1d547a90 100644
--- a/ui/src/config/section/storage.js
+++ b/ui/src/config/section/storage.js
@@ -39,7 +39,7 @@ export default {
}
},
columns: () => {
- const fields = ['name', 'state', 'sizegb', 'type', 'vmname']
+ const fields = ['name', 'state', 'size', 'type', 'vmname']
const metricsFields = ['diskkbsread', 'diskkbswrite', 'diskiopstotal']
if (store.getters.userInfo.roletype === 'Admin') {