Include comment_reply in status tab filter

This commit is contained in:
CREDO23 2026-02-04 15:13:28 +02:00
parent 21a4c25458
commit d5b75956c3

View file

@ -238,7 +238,7 @@ export function InboxSidebar({
const currentDataSource = activeTab === "mentions" ? mentions : status; const currentDataSource = activeTab === "mentions" ? mentions : status;
const { loading, loadingMore = false, hasMore = false, loadMore } = currentDataSource; 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 // Filter to only show status notification types
const statusItems = useMemo( const statusItems = useMemo(
() => () =>
@ -247,7 +247,8 @@ export function InboxSidebar({
item.type === "connector_indexing" || item.type === "connector_indexing" ||
item.type === "document_processing" || item.type === "document_processing" ||
item.type === "page_limit_exceeded" || item.type === "page_limit_exceeded" ||
item.type === "connector_deletion" item.type === "connector_deletion" ||
item.type === "comment_reply"
), ),
[status.items] [status.items]
); );