We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f04f1d8 commit b15404fCopy full SHA for b15404f
web2/src/components/TaskForm.vue
@@ -126,7 +126,7 @@ export default {
126
keys: 'get',
127
url: `/api/project/${this.projectId}/templates/${this.template.build_template_id}/tasks`,
128
responseType: 'json',
129
- })).data.filter((task) => task.version != null) : [];
+ })).data.filter((task) => task.version != null && task.status === 'success') : [];
130
131
if (this.buildTasks.length > 0) {
132
this.item.build_task_id = this.build_task ? this.build_task.id : this.buildTasks[0].id;
0 commit comments