mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-29 19:35:20 +02:00
Include comment_reply in status tab filter
This commit is contained in:
parent
21a4c25458
commit
d5b75956c3
1 changed files with 3 additions and 2 deletions
|
|
@ -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]
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue