diff --git a/js/gamemgr.js b/js/gamemgr.js index c7ffa61..f55697a 100644 --- a/js/gamemgr.js +++ b/js/gamemgr.js @@ -228,7 +228,9 @@ function list_results_by_game(game) { }); // sort records by ID results.forEach((record) => { - console.log(record); + if (record["state"] !== "concluded") { + return; + } let test_summary_record = document.createElement("section"); test_summary_record.classList.add("test-summary-record");