Compare commits
No commits in common. "e2306e890dd8e5cc4ff772dbcb74c05a489984e6" and "123b4bd39fb3fb3d2f96163222bee87438ab21b0" have entirely different histories.
e2306e890d
...
123b4bd39f
@ -5,7 +5,6 @@ export interface choiceMap {
|
||||
[details: string]: Choices;
|
||||
}
|
||||
|
||||
declare var loggedin_user_id: string;
|
||||
let choiceObjects: choiceMap = {};
|
||||
let boat_in_ottensheim = true;
|
||||
let boat_reserved_today= true;
|
||||
@ -177,9 +176,7 @@ function selectBoatChange() {
|
||||
/** custom code for Etsch */
|
||||
choiceObjects["newrower"].setChoiceByValue("81");
|
||||
}
|
||||
}else if (typeof loggedin_user_id !== 'undefined'){
|
||||
choiceObjects["newrower"].setChoiceByValue(loggedin_user_id);
|
||||
}
|
||||
}
|
||||
|
||||
const inputElement = document.getElementById(
|
||||
"departure",
|
||||
|
@ -18,7 +18,6 @@ test("Cox can start and cancel trip", async ({ page }, testInfo) => {
|
||||
await page.getByText('2x', { exact: true }).click();
|
||||
await page.getByText("Joe", { exact: true }).click();
|
||||
}
|
||||
await page.getByLabel('Remove item: \'6\'').click(); // remove pre-filled cox2
|
||||
await page.getByPlaceholder("Ruderer auswählen").click();
|
||||
await page.getByRole("option", { name: "rower2" }).click();
|
||||
await page.getByRole("option", { name: "cox2" }).click();
|
||||
@ -60,7 +59,6 @@ test("Cox can start and finish trip", async ({ page }, testInfo) => {
|
||||
await page.getByText('2x', { exact: true }).click();
|
||||
await page.getByText("Joe", { exact: true }).click();
|
||||
}
|
||||
await page.getByLabel('Remove item: \'6\'').click(); // remove pre-filled cox2
|
||||
await page.getByPlaceholder("Ruderer auswählen").click();
|
||||
await page.getByRole("option", { name: "rower2" }).click();
|
||||
await page.getByRole("option", { name: "cox2" }).click();
|
||||
|
@ -38,6 +38,5 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% if loggedin_user %}<script>var loggedin_user_id = "{{ loggedin_user.id }}";</script>{% endif %}
|
||||
<script src="/public/logbook.js"></script>
|
||||
{% endblock content %}
|
||||
|
Loading…
Reference in New Issue
Block a user