diff --git a/frontend/src/routes/DocumentList.svelte b/frontend/src/routes/DocumentList.svelte index bbcd609f..dce0853b 100644 --- a/frontend/src/routes/DocumentList.svelte +++ b/frontend/src/routes/DocumentList.svelte @@ -29,7 +29,7 @@ let { displayName: string; } | null; receivers?: { id?: string; firstName?: string | null; lastName: string; displayName: string }[]; - tags?: { id: string; name: string }[]; + tags?: { id: string; name: string; color?: string | null }[]; }[]; canWrite: boolean; error?: string | null; @@ -224,13 +224,22 @@ const showDividers = $derived(groupedDocuments.length >= 2); {#each doc.tags as tag (tag.id)}