From 377a15ebd84c7b8817240bfc479e08dda21b390c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Thu, 26 Sep 2024 12:18:54 +0200 Subject: [PATCH] fix: show pickup select only for outward direction --- .../Private/Assets/js/myep/components/PickupSelect.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/myep/components/PickupSelect.vue b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/myep/components/PickupSelect.vue index ed7b63e1..47f39f91 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/myep/components/PickupSelect.vue +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/myep/components/PickupSelect.vue @@ -50,7 +50,7 @@ computed: { hasSelectedBus () { return this.participant.transportations.some((transportation) => { - return 'BUS' === transportation.subType + return 'BUS' === transportation.subType && 'HIN' === transportation.direction }) }, },