Skip to content

Commit f09590a

Browse files
committed
add empty cells for all 4 time cells
1 parent 44a13ca commit f09590a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/map_stops.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ function display_stop_times(stop_routes) {
204204
td.innerHTML = `<span class="text-nowrap">${r[0]} ${r[0] != '-' ? popover_btn : ''}</span><br>${r[1] ? r[1] : ''}`;
205205
row.appendChild(td);
206206
}
207-
for(let i = route.times.length; i < 3; i++) {
207+
for(let i = route.times.length; i < 4; i++) {
208208
const td = document.createElement('td');
209209
td.textContent = '-';
210210
row.appendChild(td);

0 commit comments

Comments
 (0)