mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-08-03 13:43:18 +02:00
errors in the summary row should be counting last_finished_status as reflected in the per connector rows (#3484)
Co-authored-by: Richard Kuo (Danswer) <rkuo@onyx.app>
This commit is contained in:
@@ -326,8 +326,9 @@ export function CCPairIndexingStatusTable({
|
||||
(sum, status) => sum + status.docs_indexed,
|
||||
0
|
||||
),
|
||||
errors: statuses.filter((status) => status.last_status === "failed")
|
||||
.length,
|
||||
errors: statuses.filter(
|
||||
(status) => status.last_finished_status === "failed"
|
||||
).length,
|
||||
};
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user