From 40c35bc9ed1b8d32cac2c6d7ac457c3220a74c43 Mon Sep 17 00:00:00 2001 From: Stephan Richter Date: Fri, 28 Nov 2025 11:06:45 +0100 Subject: [PATCH] added kanban button to task display Signed-off-by: Stephan Richter --- frontend/src/routes/task/View.svelte | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/frontend/src/routes/task/View.svelte b/frontend/src/routes/task/View.svelte index 835d71e..a6c9488 100644 --- a/frontend/src/routes/task/View.svelte +++ b/frontend/src/routes/task/View.svelte @@ -66,6 +66,12 @@ return Object.fromEntries(candidates); } + function gotoKanban(){ + if (!project) return; + router.navigate(`/project/${project.id}/kanban`) + } + + function gotoParent(){ if (!task.parent_task_id) return; router.navigate(`/task/${task.parent_task_id}/view`) @@ -139,7 +145,6 @@ loadChildren(); } - function showPrjFiles(){ var url = `/files/project/${project.id}`; window.open(url, '_blank').focus(); @@ -206,6 +211,7 @@
{t('project')}
{project.name} +
{/if}