8 changed files with 24 additions and 15 deletions
@ -1,11 +1,13 @@
@@ -1,11 +1,13 @@
|
||||
<script> |
||||
import { t } from '../translations.svelte.js'; |
||||
import { onMount } from 'svelte'; |
||||
import { useTinyRouter } from 'svelte-tiny-router'; |
||||
import { api } from '../urls.svelte.js'; |
||||
|
||||
import { t } from '../../translations.svelte.js'; |
||||
import { api } from '../../urls.svelte.js'; |
||||
|
||||
import TaskList from './TaskList.svelte'; |
||||
import LineEditor from './LineEditor.svelte'; |
||||
import LineEditor from '../../Components/LineEditor.svelte'; |
||||
|
||||
const router = useTinyRouter(); |
||||
let { estimated_time, show_closed, task } = $props(); |
||||
let children = $state(null); |
||||
@ -1,5 +1,5 @@
@@ -1,5 +1,5 @@
|
||||
<script> |
||||
import { t } from '../translations.svelte.js'; |
||||
import { t } from '../../translations.svelte.js'; |
||||
import ListTask from './ListTask.svelte'; |
||||
|
||||
let { estimated_time, show_closed, tasks } = $props(); |
||||
Loading…
Reference in new issue