fix: correct calculation of undersubscription

This commit is contained in:
Björn Fromme
2023-12-12 13:56:19 +01:00
parent 006cb28f11
commit 6df7fe044b
@@ -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};
},