bugfix: still had problems with the menu entry urls
All checks were successful
Build Docker Image / Docker-Build (push) Successful in 2m32s
Build Docker Image / Clean-Registry (push) Successful in 3s

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2026-02-09 16:11:23 +01:00
parent cb21560f7c
commit 76651b1e46

View File

@@ -59,7 +59,7 @@ onMount(fetchModules);
</form> </form>
<button class="symbol" onclick={e => expand = !expand}> </button> <button class="symbol" onclick={e => expand = !expand}> </button>
{#each modules as module,i} {#each modules as module,i}
<a href={module.module.includes('://') ? modules.module : '/'+modules.module} {onclick} class={module.class}>{@html t(module.title)}</a> <a href={module.module.includes('://') ? module.module : '/'+module.module} {onclick} class={module.class}>{@html t(module.title)}</a>
{/each} {/each}
{#if user.id == 2} {#if user.id == 2}
<a href="https://svelte.dev/tutorial/svelte/state" target="_blank">{t('tutorial')}</a> <a href="https://svelte.dev/tutorial/svelte/state" target="_blank">{t('tutorial')}</a>