Skip to content

Commit

Permalink
ui: status: correct reported execs / remotes
Browse files Browse the repository at this point in the history
The JSON format has changed for filtering executors to filtering
remotes. Adjust the UI.

Signed-off-by: Jakub Kicinski <kuba@kernel.org>
  • Loading branch information
kuba-moo committed May 7, 2024
1 parent c338ed1 commit 8092d86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/status.js
Original file line number Diff line number Diff line change
Expand Up @@ -700,8 +700,8 @@ function filters_doit(data_raw)
let cf_tests = document.getElementById("cf-tests");
var output, sep = "";

output = "<b>Executors reported:</b> ";
$.each(data_raw.executors, function(i, v) {
output = "<b>Remotes reported:</b> ";
$.each(data_raw.remotes, function(i, v) {
output += sep + v;
sep = ", ";
});
Expand Down

0 comments on commit 8092d86

Please sign in to comment.