From a5c658d6f2345b166ad311c14bce81483e63e08b Mon Sep 17 00:00:00 2001 From: Stephan Richter Date: Sun, 12 Oct 2025 00:10:15 +0200 Subject: [PATCH] added file link to task view Signed-off-by: Stephan Richter --- frontend/src/routes/task/View.svelte | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/src/routes/task/View.svelte b/frontend/src/routes/task/View.svelte index 1947426..5eecc20 100644 --- a/frontend/src/routes/task/View.svelte +++ b/frontend/src/routes/task/View.svelte @@ -131,6 +131,11 @@ } } + function showPrjFiles(){ + var url = `/files/project/${project.id}`; + window.open(url, '_blank').focus(); + } + function toggleSettings(){ showSettings = !showSettings; } @@ -184,6 +189,7 @@
{t('project')}
{/if} {#if task.parent}