Merge branch 'main' into dev
All checks were successful
Build Docker Image / Docker-Build (push) Successful in 2m27s
Build Docker Image / Clean-Registry (push) Successful in 2s

This commit is contained in:
2026-02-09 16:03:38 +01:00

View File

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