pis #2

Merged
fred.boniface merged 76 commits from pis into main 2023-05-06 21:53:45 +01:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit b17894f7f1 - Show all commits

View File

@ -42,7 +42,9 @@ async function insertData(json) {
} }
tableData += "</table>" tableData += "</table>"
div.insertAdjacentHTML("beforeend", tableData) div.insertAdjacentHTML("beforeend", tableData)
document.getElementById('result-count').textContent = results if (results > 1) {
document.getElementById('result-count').textContent = results.toString()
}
} }
async function noData() { async function noData() {