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 a57ef23 commit 2ead7a6Copy full SHA for 2ead7a6
qiita_pet/static/js/qiita.js
@@ -55,7 +55,7 @@ function format_extra_info_processing_jobs ( data ) {
55
'<tr>'+
56
'<td colspan="2"><h5>Parameters:</h5>'+ data[6] +'</td>'+
57
'</tr>';
58
- if (data[7] !== '') {
+ if (data[7] !== '' && data[3] === 'in_construction') {
59
row += '<tr>'+
60
'<td colspan="2">'+
61
'<button class="btn btn-danger btn-sm" onclick="remove_job(\''+ data[5] + "', '" + data[7] +'\');">'+
qiita_pet/templates/sitebase.html
@@ -130,6 +130,9 @@
130
$('#run-btn').prop('disabled', true);
131
}
132
$("#processing-info-div").empty();
133
+ } else {
134
+ processing_jobs_vue.update_processing_job_data();
135
+ bootstrapAlert("Job deleted", "success", 10000);
136
137
138
0 commit comments