diff --git a/frontend/src/lib/components/AdventureModal.svelte b/frontend/src/lib/components/AdventureModal.svelte index b9daa0f..1321db0 100644 --- a/frontend/src/lib/components/AdventureModal.svelte +++ b/frontend/src/lib/components/AdventureModal.svelte @@ -8,7 +8,7 @@ let fullStartDate: string = ''; let fullEndDate: string = ''; - let allDay: boolean = false; + let allDay: boolean = true; // Set full start and end dates from collection if (collection && collection.start_date && collection.end_date) { @@ -698,13 +698,13 @@ on:change={() => (constrainDates = !constrainDates)} /> {/if} - All Day + {$t('adventures.all_day')} (allDay = !allDay)} + bind:checked={allDay} />