It's a todo list.
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix hour math

zeudev 2bc1eec7 7ba69f4a

+2 -2
+1 -1
src/lib/TaskItem.svelte
··· 29 29 let hourInput = $state(0); 30 30 let minuteInput = $state(0); 31 31 let secondsInput = $state(0); 32 - let inputDuration = $derived((hourInput * 360) + (minuteInput * 60) + secondsInput); 32 + let inputDuration = $derived((hourInput * 3600) + (minuteInput * 60) + secondsInput); 33 33 34 34 function handleTimeSubmit() { 35 35 if (selectedTab === "set") {
+1 -1
src/lib/stores.svelte.ts
··· 5 5 id: string; 6 6 description: string; 7 7 completed: boolean; 8 - duration: number; 8 + duration: number; // in seconds 9 9 } 10 10 11 11 export type List = {