Skip to content

Commit c17ae74

Browse files
authored
ui: fix getDiagnosticsData files field (#5853)
Fixes #5707 Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>
1 parent 216bea1 commit c17ae74

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ui/src/views/AutogenView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1025,7 +1025,7 @@ export default {
10251025
10261026
this.showAction = true
10271027
for (const param of this.currentAction.paramFields) {
1028-
if (param.type === 'list' && ['tags', 'hosttags', 'storagetags'].includes(param.name)) {
1028+
if (param.type === 'list' && ['tags', 'hosttags', 'storagetags', 'files'].includes(param.name)) {
10291029
param.type = 'string'
10301030
}
10311031
if (param.type === 'uuid' || param.type === 'list' || param.name === 'account' || (this.currentAction.mapping && param.name in this.currentAction.mapping)) {

0 commit comments

Comments
 (0)