diff --git a/frontend/src/lib/components/Navbar.svelte b/frontend/src/lib/components/Navbar.svelte
index 66b0dd3..ae5eb72 100644
--- a/frontend/src/lib/components/Navbar.svelte
+++ b/frontend/src/lib/components/Navbar.svelte
@@ -117,7 +117,7 @@
{#if data.user}
-
diff --git a/frontend/src/lib/components/NoteCard.svelte b/frontend/src/lib/components/NoteCard.svelte
index 9b6ba62..c973084 100644
--- a/frontend/src/lib/components/NoteCard.svelte
+++ b/frontend/src/lib/components/NoteCard.svelte
@@ -71,11 +71,28 @@
{#if unlinked}
{$t('adventures.out_of_range')}
{/if}
+ {#if note.content && note.content.length > 0}
+
+ {note.content}
+
+ {/if}
{#if note.links && note.links.length > 0}
{note.links.length}
{note.links.length > 1 ? $t('adventures.links') : $t('adventures.link')}
+
{/if}
{#if note.date && note.date !== ''}
diff --git a/frontend/src/routes/collections/[id]/+page.svelte b/frontend/src/routes/collections/[id]/+page.svelte
index ab12175..b57af12 100644
--- a/frontend/src/routes/collections/[id]/+page.svelte
+++ b/frontend/src/routes/collections/[id]/+page.svelte
@@ -308,6 +308,10 @@
}
}
+ function changeHash(event) {
+ window.location.hash = '#' + event.target.value;
+ }
+
onMount(() => {
if (data.props.adventure) {
collection = data.props.adventure;
@@ -772,7 +776,17 @@
{/if}
{#if collection.id}
-
+
+