diff --git a/frontend/src/lib/components/ChecklistCard.svelte b/frontend/src/lib/components/ChecklistCard.svelte
index 13814dc9..37a024f1 100644
--- a/frontend/src/lib/components/ChecklistCard.svelte
+++ b/frontend/src/lib/components/ChecklistCard.svelte
@@ -30,7 +30,7 @@
collection.start_date > checklist.date &&
collection.end_date > checklist.date;
- unlinked = !!(startOutsideRange || endOutsideRange);
+ unlinked = !!(startOutsideRange || endOutsideRange || !checklist.date);
}
}
diff --git a/frontend/src/lib/components/ChecklistModal.svelte b/frontend/src/lib/components/ChecklistModal.svelte
index d6388dc4..07cd4681 100644
--- a/frontend/src/lib/components/ChecklistModal.svelte
+++ b/frontend/src/lib/components/ChecklistModal.svelte
@@ -293,10 +293,9 @@
{/if}
- {$t('about.close')}
{$t('notes.save')}
+ >{$t('about.close')}
diff --git a/frontend/src/lib/components/NoteCard.svelte b/frontend/src/lib/components/NoteCard.svelte
index f513f783..9b6ba62c 100644
--- a/frontend/src/lib/components/NoteCard.svelte
+++ b/frontend/src/lib/components/NoteCard.svelte
@@ -25,7 +25,7 @@
const endOutsideRange =
note.date && collection.start_date > note.date && collection.end_date > note.date;
- unlinked = !!(startOutsideRange || endOutsideRange);
+ unlinked = !!(startOutsideRange || endOutsideRange || !note.date);
}
}
diff --git a/frontend/src/lib/components/NoteModal.svelte b/frontend/src/lib/components/NoteModal.svelte
index 8b37a7c5..83449849 100644
--- a/frontend/src/lib/components/NoteModal.svelte
+++ b/frontend/src/lib/components/NoteModal.svelte
@@ -288,11 +288,10 @@
-
- {$t('about.close')}
-
{$t('notes.save')}
+
+ {$t('about.close')}
diff --git a/frontend/src/lib/components/TransportationModal.svelte b/frontend/src/lib/components/TransportationModal.svelte
index a37c6bd3..07291ea9 100644
--- a/frontend/src/lib/components/TransportationModal.svelte
+++ b/frontend/src/lib/components/TransportationModal.svelte
@@ -589,7 +589,7 @@ it would also work to just use on:click on the MapLibre component itself. -->
- {$t('adventures.save_next')}
+ {$t('notes.save')}
{$t('about.close')}
diff --git a/frontend/src/routes/collections/[id]/+page.svelte b/frontend/src/routes/collections/[id]/+page.svelte
index 0265ba41..c8d6e2fc 100644
--- a/frontend/src/routes/collections/[id]/+page.svelte
+++ b/frontend/src/routes/collections/[id]/+page.svelte
@@ -426,7 +426,7 @@
{/if}
{#if collection.description}
-