From 5dac1d993c85f4d31fa5cadb73105f07284e042c Mon Sep 17 00:00:00 2001 From: Marcel Date: Mon, 25 May 2026 19:29:53 +0200 Subject: [PATCH] fix(themen): correct link color and tag navigation route MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Match "Alle Themen →" link style to other reader dashboard widgets (text-ink-2, font-semibold, no-underline) - Fix tag card hrefs from /?tag= to /documents?tag= — the home page does not handle tag filtering, /documents does Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/lib/shared/dashboard/ThemenWidget.svelte | 4 ++-- frontend/src/routes/themen/+page.svelte | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/lib/shared/dashboard/ThemenWidget.svelte b/frontend/src/lib/shared/dashboard/ThemenWidget.svelte index 107e570a..cef35418 100644 --- a/frontend/src/lib/shared/dashboard/ThemenWidget.svelte +++ b/frontend/src/lib/shared/dashboard/ThemenWidget.svelte @@ -25,7 +25,7 @@ const shownTags = $derived(visibleTags.slice(0, MAX_VISIBLE_TAGS)); {m.themen_alle()} → @@ -40,7 +40,7 @@ const shownTags = $derived(visibleTags.slice(0, MAX_VISIBLE_TAGS)); > {#each shownTags as tag (tag.id)} data.tree.filter(hasAnyDocuments)); > data.tree.filter(hasAnyDocuments)); {#each shownChildren as child (child.id)} {child.name} @@ -71,7 +71,7 @@ const visibleTree = $derived.by(() => data.tree.filter(hasAnyDocuments)); {#if hiddenCount > 0} {m.themen_weitere({ count: hiddenCount })} →