Skip to content

Commit

Permalink
Fix for display of processing logs.
Browse files Browse the repository at this point in the history
  • Loading branch information
tblock79 committed Jul 23, 2024
1 parent fbe47bc commit b41e32f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.1-beta.3
0.3.1-beta.4
11 changes: 8 additions & 3 deletions webinterface/templates/queue.html
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@ <h5 class="title is-5 configtitle" style="margin-top: 60px;"><i
complete: function (data) {
$('#loadingspinner').hide();
},
timeout: 3000
timeout: 5000
});
return;
}
Expand All @@ -953,13 +953,18 @@ <h5 class="title is-5 configtitle" style="margin-top: 60px;"><i
},
success: function (data) {
if (data && data.length > 0) {
$("#process_logs_display").text(data[0].logs)
$("#process_logs_display").text("");
for (var i = 0; i < data.length; i++) {
$("#process_logs_display").append("### Module " + (i+1).toString() + " -- Begin\n\n");
$("#process_logs_display").append(data[i].logs);
$("#process_logs_display").append("\n### Module " + (i+1).toString() + " -- Complete\n\n");
}
} else {
$("#process_logs_display").text("No processing log available for selected task.")
}
$("#process_logs").addClass("is-active");
},
timeout: 3000
timeout: 5000
});
}

Expand Down

0 comments on commit b41e32f

Please sign in to comment.