accepted review comments

This commit is contained in:
J-Klinke
2024-07-04 18:28:44 +02:00
parent 62b0d5c028
commit bbb8c9259f
3 changed files with 10 additions and 11 deletions

View File

@@ -24,9 +24,8 @@ function parseContent(content, clearResults) {
Array.from(searchSection.querySelectorAll(".datasets .dataset")).forEach(e => e.remove());
}
for (const dataset of datasets) {
console.log(dataset) //TODO: remove
searchSection.querySelector(".datasets")
.appendChild(dataset.createDatasetHTMLElement(dataset.getID()));
.appendChild(dataset.createDatasetHTMLElement());
}
}
}