mirror of
https://github.com/karma-riuk/crab-webapp.git
synced 2025-07-05 06:08:13 +02:00
removed useless comments
This commit is contained in:
@ -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();
|
||||
|
||||
|
Reference in New Issue
Block a user