From d5b75956c36cca3098b1b69aae747a27a9ded01e Mon Sep 17 00:00:00 2001 From: CREDO23 Date: Wed, 4 Feb 2026 15:13:28 +0200 Subject: [PATCH] Include comment_reply in status tab filter --- surfsense_web/components/layout/ui/sidebar/InboxSidebar.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/surfsense_web/components/layout/ui/sidebar/InboxSidebar.tsx b/surfsense_web/components/layout/ui/sidebar/InboxSidebar.tsx index c1f5fcc99..a46ad5478 100644 --- a/surfsense_web/components/layout/ui/sidebar/InboxSidebar.tsx +++ b/surfsense_web/components/layout/ui/sidebar/InboxSidebar.tsx @@ -238,7 +238,7 @@ export function InboxSidebar({ const currentDataSource = activeTab === "mentions" ? mentions : status; const { loading, loadingMore = false, hasMore = false, loadMore } = currentDataSource; - // Status tab includes: connector indexing, document processing, page limit exceeded, connector deletion + // Status tab includes: connector indexing, document processing, page limit exceeded, connector deletion, comment replies // Filter to only show status notification types const statusItems = useMemo( () => @@ -247,7 +247,8 @@ export function InboxSidebar({ item.type === "connector_indexing" || item.type === "document_processing" || item.type === "page_limit_exceeded" || - item.type === "connector_deletion" + item.type === "connector_deletion" || + item.type === "comment_reply" ), [status.items] );