forked from Ruderverein-Donau-Linz/rowt
fix ci
This commit is contained in:
parent
34775ace90
commit
77c888cf13
@ -139,8 +139,11 @@ function selectBoatChange() {
|
||||
|
||||
inputElement.value = formattedDateTime;
|
||||
|
||||
document.getElementById("distance_in_km").value = "";
|
||||
document.getElementById("destination").dispatchEvent(new Event('input'));
|
||||
const distinput = <HTMLInputElement>document.querySelector('#distance_in_km');
|
||||
distinput.value = "";
|
||||
|
||||
const destinput= <HTMLInputElement>document.querySelector('#destination');
|
||||
destinput.dispatchEvent(new Event('input'));
|
||||
},false);
|
||||
|
||||
choiceObjects[boatSelect.id] = boatChoice;
|
||||
@ -379,7 +382,6 @@ function initNewChoice(select: HTMLInputElement) {
|
||||
},false);
|
||||
|
||||
choiceObjects[select.id] = choice;
|
||||
document.getElementById("distance_in_km").value = "";
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user