pis #2

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

View File

@ -35,7 +35,7 @@ async function insertData(json) {
let results = 0 let results = 0
for(var i = 0; i < json.length; i++) { // Hopefully can style output with CSS for(var i = 0; i < json.length; i++) { // Hopefully can style output with CSS
tableData += `<tr><td class="pis-code">${json[i]['code']}</td> tableData += `<tr><td class="pis-code">${json[i]['code']}</td>
<td class="station">${json[i]['stops']}</td></tr>` <td class="station">${json[i]['stops'].join(', ')}</td></tr>`
results++ results++
} }
tableData += "</table>" tableData += "</table>"