completed task index

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-08-04 22:58:44 +02:00
parent 1a9ce502b5
commit 20e91f5b2a
2 changed files with 45 additions and 5 deletions

View File

@@ -20,7 +20,7 @@
let estimated_time = $state({sum:0});
let project = $state(null);
const router = useTinyRouter();
let showSettings = $state(false);
let showSettings = $state(router.fullPath.endsWith('/edit'));
let task = $state(null);
$effect(() => updateOn(id));
@@ -46,6 +46,7 @@
function updateOn(id){
task = null;
loadTask();
console.log(router);
}
function addChild(){