From f3c00324b85266cdb2117058067c6a8e28a878d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan-Peter=20Dhall=C3=A9?= <62998174+janpeterd@users.noreply.github.com> Date: Tue, 19 Mar 2024 03:43:27 +0100 Subject: [PATCH] Fix: wrong URL other blogposts (#54) --- src/lib/components/news-thumb.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/news-thumb.svelte b/src/lib/components/news-thumb.svelte index 4e8221e..393748e 100644 --- a/src/lib/components/news-thumb.svelte +++ b/src/lib/components/news-thumb.svelte @@ -4,7 +4,7 @@ import { animateIn, formatDate } from '$lib/Helper.mjs' export let entry - const link = `/news/${entry.slug}` + $: link = `/news/${entry.slug}`