Fix object properties
This commit is contained in:
parent
440527480b
commit
2c001426ca
@ -60,9 +60,9 @@ async function displayOne(object) {
|
|||||||
async function createStopTableRow(stop) {
|
async function createStopTableRow(stop) {
|
||||||
return `
|
return `
|
||||||
<tr>
|
<tr>
|
||||||
<td>${stop['TIPLOC']}</td>
|
<td>${stop['tiploc']}</td>
|
||||||
<td>${stop['arrivalTime']}</td>
|
<td>${stop['publicArrival']}</td>
|
||||||
<td>${stop['departureTime']}</td>
|
<td>${stop['publicDeparture']}</td>
|
||||||
</tr>
|
</tr>
|
||||||
`
|
`
|
||||||
}
|
}
|
Reference in New Issue
Block a user