fix: correct calculation of undersubscription
This commit is contained in:
+1
-1
@@ -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};
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user