Skip to content

Commit

Permalink
Fix for results display
Browse files Browse the repository at this point in the history
  • Loading branch information
tblock79 committed Jul 24, 2024
1 parent 25b8241 commit f97975b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.1-beta.7
0.3.1-beta.8
2 changes: 1 addition & 1 deletion webinterface/templates/queue.html
Original file line number Diff line number Diff line change
Expand Up @@ -1034,7 +1034,7 @@ <h5 class="title is-5 configtitle" style="margin-top: 60px;"><i
var resultsText = "";
for (var i = 0; i < data.length; i++) {
resultsText += "### Module " + data[i].module + "\n\n";
resultsText += data[i].logs;
resultsText += data[i].output;
resultsText += "\n\n";
}
$("#process_results_display").text(resultsText);
Expand Down

0 comments on commit f97975b

Please sign in to comment.