Fix display of 'undefined'

This commit is contained in:
Fred Boniface 2023-06-20 19:26:01 +01:00
parent 055cdddeff
commit 628c2fd75d
1 changed files with 2 additions and 2 deletions

View File

@ -73,8 +73,8 @@
{#each service.stops as stop}
<tr>
<td>{stop.tiploc}</td>
<td>{stop.wttArrival}</td>
<td>{stop.wttDeparture}</td>
<td>{stop.wttArrival || '-'}</td>
<td>{stop.wttDeparture || '-'}</td>
</tr>
{/each}
</table>