From b9400be8c72f0c2c94eee2f413649ed2ac3474e9 Mon Sep 17 00:00:00 2001 From: Stephan Richter Date: Thu, 2 Oct 2025 09:27:51 +0200 Subject: [PATCH] added links from project view to times and files --- frontend/src/routes/project/View.svelte | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/frontend/src/routes/project/View.svelte b/frontend/src/routes/project/View.svelte index 307447c..e957cd7 100644 --- a/frontend/src/routes/project/View.svelte +++ b/frontend/src/routes/project/View.svelte @@ -154,6 +154,14 @@ loadTasks(); } + function showFiles(e){ + window.open(`/files/project/${id}`, '_blank').focus(); + } + + function showTimes(e){ + window.open(`/time?project=${id}`, '_blank').focus(); + } + onMount(loadProject); @@ -183,9 +191,9 @@ {/if}
{t('context')}
- + - +
{#if showSettings}
{t('extended_settings')}