From cb21560f7c4ed13142b9b45761f0c55577fcb310 Mon Sep 17 00:00:00 2001 From: Stephan Richter Date: Mon, 9 Feb 2026 16:03:31 +0100 Subject: [PATCH] bugfix: menu code did not properly handle module paths on non-top-level pages Signed-off-by: Stephan Richter --- frontend/src/Components/Menu.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Components/Menu.svelte b/frontend/src/Components/Menu.svelte index afb6035b..1ed01003 100644 --- a/frontend/src/Components/Menu.svelte +++ b/frontend/src/Components/Menu.svelte @@ -59,7 +59,7 @@ onMount(fetchModules); {#each modules as module,i} - {@html t(module.title)} + {@html t(module.title)} {/each} {#if user.id == 2} {t('tutorial')}