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