From 6df7fe044bd158bc1e901ffaaf2a25a7af8e1b3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Tue, 12 Dec 2023 13:56:19 +0100 Subject: [PATCH] fix: correct calculation of undersubscription --- .../Private/Assets/js/components/GroupsPriceCalculator.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/components/GroupsPriceCalculator.vue b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/components/GroupsPriceCalculator.vue index 4b95cd6f..f56bdd7f 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/components/GroupsPriceCalculator.vue +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/components/GroupsPriceCalculator.vue @@ -444,7 +444,7 @@ export default { } } if (this.selectedBoard && this.totalPax < 50) { - undersubscription = this.totalPax * 5 + undersubscription = this.totalPax * 5 * this.selectedRange.length } return {base, additional, undersubscription}; },