fix: show pickup select only for outward direction

This commit is contained in:
Björn Fromme
2024-09-26 12:18:54 +02:00
parent 84a867b8b1
commit 377a15ebd8
@@ -50,7 +50,7 @@
computed: { computed: {
hasSelectedBus () { hasSelectedBus () {
return this.participant.transportations.some((transportation) => { return this.participant.transportations.some((transportation) => {
return 'BUS' === transportation.subType return 'BUS' === transportation.subType && 'HIN' === transportation.direction
}) })
}, },
}, },