This commit is contained in:
philipp 2023-09-24 22:29:44 +02:00
parent fea45d5257
commit 6a1e01c2d9

View File

@ -62,11 +62,11 @@ function selectBoatChange() {
choiceObjects[shipmasterSelect.id] = shipmasterChoice; choiceObjects[shipmasterSelect.id] = shipmasterChoice;
} }
function setMaxAmountRowers(rowers){ function setMaxAmountRowers(rowers: number){
let curSelection = choiceObjects['newrower'].getValue(true); let curSelection = choiceObjects['newrower'].getValue(true);
let amount_to_delete = curSelection.length - rowers; let amount_to_delete = (<any>curSelection).length - rowers;
if (amount_to_delete > 0){ if (amount_to_delete > 0){
let to_delete = curSelection.slice(-amount_to_delete); let to_delete = (<any>curSelection).slice(-amount_to_delete);
for (let del of to_delete) { for (let del of to_delete) {
choiceObjects['newrower'].removeActiveItemsByValue(del); choiceObjects['newrower'].removeActiveItemsByValue(del);
} }