From 694c134a5473780d947c951185bcc8b8a466b185 Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Mon, 19 May 2025 10:15:13 +0200 Subject: [PATCH] removed useless comments --- public/js/index.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/js/index.js b/public/js/index.js index f1a7a47..88851a0 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -34,8 +34,8 @@ function populateCommentTable(results) { tbody.innerHTML = ""; Object.entries(results).forEach(([id, info]) => { - const row = tbody.insertRow(); // create a new row - const idCell = row.insertCell(); // cell 1: id + const row = tbody.insertRow(); + const idCell = row.insertCell(); const commentCell = row.insertCell(); const scoreCell = row.insertCell(); const span = document.createElement("span"); @@ -55,8 +55,8 @@ function populateRefinementTable(results) { tbody.innerHTML = ""; Object.entries(results).forEach(([id, info]) => { - const row = tbody.insertRow(); // create a new row - const idCell = row.insertCell(); // cell 1: id + const row = tbody.insertRow(); + const idCell = row.insertCell(); const compiledCell = row.insertCell(); const testedCell = row.insertCell();