This commit is contained in:
vcoppe
2024-05-23 11:21:57 +02:00
parent f202b6c196
commit 51495e9bd1
16 changed files with 211 additions and 148 deletions

View File

@@ -5,7 +5,7 @@
import type { Readable } from 'svelte/store';
import FileListNodeContent from './FileListNodeContent.svelte';
import FileListNodeLabel from './FileListNodeLabel.svelte';
import { getContext } from 'svelte';
import { afterUpdate, getContext } from 'svelte';
import { type ListItem, type ListTrackItem } from './FileList';
export let node:
@@ -16,7 +16,7 @@
let recursive = getContext<boolean>('recursive');
let label =
$: label =
node instanceof GPXFile
? node.metadata.name
: node instanceof Track