removed useless comments

This commit is contained in:
Karma Riuk
2025-05-19 10:15:13 +02:00
parent 90821356fa
commit 694c134a54

View File

@ -34,8 +34,8 @@ function populateCommentTable(results) {
tbody.innerHTML = ""; tbody.innerHTML = "";
Object.entries(results).forEach(([id, info]) => { Object.entries(results).forEach(([id, info]) => {
const row = tbody.insertRow(); // create a new row const row = tbody.insertRow();
const idCell = row.insertCell(); // cell 1: id const idCell = row.insertCell();
const commentCell = row.insertCell(); const commentCell = row.insertCell();
const scoreCell = row.insertCell(); const scoreCell = row.insertCell();
const span = document.createElement("span"); const span = document.createElement("span");
@ -55,8 +55,8 @@ function populateRefinementTable(results) {
tbody.innerHTML = ""; tbody.innerHTML = "";
Object.entries(results).forEach(([id, info]) => { Object.entries(results).forEach(([id, info]) => {
const row = tbody.insertRow(); // create a new row const row = tbody.insertRow();
const idCell = row.insertCell(); // cell 1: id const idCell = row.insertCell();
const compiledCell = row.insertCell(); const compiledCell = row.insertCell();
const testedCell = row.insertCell(); const testedCell = row.insertCell();