diff --git a/web/drafting-board.js b/web/drafting-board.js index 924d457..6103a95 100644 --- a/web/drafting-board.js +++ b/web/drafting-board.js @@ -10,7 +10,7 @@ export function addJourneyToDraftingBoard(journey) { let first_station = true; - for (let leg of journey.legs) { + for (let leg of journey.legs.filter(item => !("walking" in item))) { if (first_station) { let el_origin_name = EL("div", { class: [ "station-name" ],