This is an automated email from the ASF dual-hosted git repository.
sureshanaparti pushed a commit to branch 4.16
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.16 by this push:
new c17ae74 ui: fix getDiagnosticsData files field (#5853)
c17ae74 is described below
commit c17ae740f45f22af22059a8cd4418eb8f35dcc4c
Author: Abhishek Kumar <[email protected]>
AuthorDate: Wed Jan 12 13:52:01 2022 +0530
ui: fix getDiagnosticsData files field (#5853)
Fixes #5707
Signed-off-by: Abhishek Kumar <[email protected]>
---
ui/src/views/AutogenView.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ui/src/views/AutogenView.vue b/ui/src/views/AutogenView.vue
index 5baf064..35c65ca 100644
--- a/ui/src/views/AutogenView.vue
+++ b/ui/src/views/AutogenView.vue
@@ -1025,7 +1025,7 @@ export default {
this.showAction = true
for (const param of this.currentAction.paramFields) {
- if (param.type === 'list' && ['tags', 'hosttags',
'storagetags'].includes(param.name)) {
+ if (param.type === 'list' && ['tags', 'hosttags', 'storagetags',
'files'].includes(param.name)) {
param.type = 'string'
}
if (param.type === 'uuid' || param.type === 'list' || param.name ===
'account' || (this.currentAction.mapping && param.name in
this.currentAction.mapping)) {