diff --git a/app/api/documents.py b/app/api/documents.py index ff11fe0..701f664 100644 --- a/app/api/documents.py +++ b/app/api/documents.py @@ -103,7 +103,7 @@ async def get_document_tree( sql_text(""" SELECT ai_domain, COUNT(*) FROM documents - WHERE ai_domain IS NOT NULL AND ai_domain != '' + WHERE ai_domain IS NOT NULL AND ai_domain != '' AND ai_domain != 'News' AND deleted_at IS NULL GROUP BY ai_domain ORDER BY ai_domain diff --git a/frontend/src/routes/+layout.svelte b/frontend/src/routes/+layout.svelte index 1cb7e0b..3512d28 100644 --- a/frontend/src/routes/+layout.svelte +++ b/frontend/src/routes/+layout.svelte @@ -62,6 +62,7 @@