We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 045bd95 commit 14ca375Copy full SHA for 14ca375
src/components/job/AddJobModal.vue
@@ -131,7 +131,9 @@ export default {
131
return this.params.filter(param => param.required && param.defaultParamValue === null);
132
},
133
jobParameters() {
134
- return this.params.map(param => {
+ return this.params.filter(param => {
135
+ return param.value !== null;
136
+ }).map(param => {
137
let value = param.value;
138
if(value.id) {
139
value = value.id;
0 commit comments