diff --git a/frontend/src/lib/components/ChecklistCard.svelte b/frontend/src/lib/components/ChecklistCard.svelte
index 13814dc..37a024f 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 d6388dc..07cd468 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 f513f78..9b6ba62 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 8b37a7c..8344984 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 a37c6bd..07291ea 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 0265ba4..c8d6e2f 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}
-