Skip to content

Commit 0821830

Browse files
committed
improvements on monitor Screen. Fixed issue on filters.
1 parent 25a9b0b commit 0821830

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

source/src/main/webapp/js/pages/ReportingMonitor.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -333,10 +333,10 @@ function goFullscreen(withRefrash = true) {
333333

334334
function loadBoard() {
335335

336-
let systems = [];
337-
let environments = [];
338-
let countries = [];
339-
let campaigns = [];
336+
systems = [];
337+
environments = [];
338+
countries = [];
339+
campaigns = [];
340340

341341
let systemQ = "";
342342
if ($("#systemSelect").val() !== null) {
@@ -401,9 +401,9 @@ function loadBoard() {
401401

402402
InsertURLInHistory("./ReportingMonitor.jsp?" + qS);
403403
if (wsOpen) {
404-
refreshMonitorTable(lastReceivedData, systems, environments, countries, campaigns);
404+
refreshMonitorTable(lastReceivedData);
405405
} else if (!wsStartOpenning) {
406-
openSocketAndBuildTable(systems, environments, countries, campaigns);
406+
openSocketAndBuildTable();
407407
}
408408

409409
}
@@ -557,7 +557,7 @@ function refreshMonitorTable(dataFromWs) {
557557
data.tests = dataFromWs.tests;
558558
data.executionBoxes = {};
559559
let listData = Object.keys(dataFromWs.executionBoxes);
560-
// console.info("Size before filter : " + listData.length);
560+
console.info("Size before filter : " + listData.length);
561561
// console.info(systems);
562562
// console.info(environments);
563563
// console.info(countries);
@@ -598,7 +598,7 @@ function refreshMonitorTable(dataFromWs) {
598598
}
599599
}
600600
// console.info(data);
601-
// console.info("Size after filter : " + Object.keys(data.executionBoxes).length);
601+
console.info("Size after filter : " + Object.keys(data.executionBoxes).length);
602602
// console.info(agregatedStatus);
603603

604604

0 commit comments

Comments
 (0)