File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -122,13 +122,13 @@ export default {
122
122
return this .selectedSoftware ? this .selectedSoftware .parameters .array : [];
123
123
},
124
124
optionalParams () {
125
- return this .params .filter (param => ! param .required && ! param .defaultParamValue );
125
+ return this .params .filter (param => ! param .required && param .defaultParamValue === null );
126
126
},
127
127
prefilledParams () {
128
128
return this .params .filter (param => param .defaultParamValue );
129
129
},
130
130
paramsMandatoryNoDefault () {
131
- return this .params .filter (param => param .required && ! param .defaultParamValue );
131
+ return this .params .filter (param => param .required && param .defaultParamValue === null );
132
132
},
133
133
jobParameters () {
134
134
return this .params .map (param => {
You can’t perform that action at this time.
0 commit comments