@@ -333,10 +333,10 @@ function goFullscreen(withRefrash = true) {
333333
334334function 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