fix: disable all documents by default

This commit is contained in:
Timothy J. Baek 2024-02-03 17:26:57 -08:00
parent eb2b1ab77b
commit f814b08bcc

View file

@ -17,12 +17,16 @@
let collections = []; let collections = [];
$: collections = [ $: collections = [
...($documents.length > 0
? [
{ {
name: 'All Documents', name: 'All Documents',
type: 'collection', type: 'collection',
title: 'All Documents', title: 'All Documents',
collection_names: $documents.map((doc) => doc.collection_name) collection_names: $documents.map((doc) => doc.collection_name)
}, }
]
: []),
...$documents ...$documents
.reduce((a, e, i, arr) => { .reduce((a, e, i, arr) => {
return [...new Set([...a, ...(e?.content?.tags ?? []).map((tag) => tag.name)])]; return [...new Set([...a, ...(e?.content?.tags ?? []).map((tag) => tag.name)])];