diff --git a/web/src/app/admin/connector/[ccPairId]/IndexingAttemptsTable.tsx b/web/src/app/admin/connector/[ccPairId]/IndexingAttemptsTable.tsx index 5f87b95bb2f..eeca261979d 100644 --- a/web/src/app/admin/connector/[ccPairId]/IndexingAttemptsTable.tsx +++ b/web/src/app/admin/connector/[ccPairId]/IndexingAttemptsTable.tsx @@ -80,7 +80,6 @@ export function IndexingAttemptsTable({ ccPair }: { ccPair: CCPairFullInfo }) { Time Started Status New Doc Cnt - Removed Doc Cnt Total Doc Cnt Error Msg @@ -109,8 +108,19 @@ export function IndexingAttemptsTable({ ccPair }: { ccPair: CCPairFullInfo }) { )} - {indexAttempt.new_docs_indexed} - {indexAttempt.docs_removed_from_index} + + + + {indexAttempt.new_docs_indexed} + {indexAttempt.docs_removed_from_index > 0 && ( + + (also removed {indexAttempt.docs_removed_from_index}{" "} + docs that were detected as deleted in the source) + + )} + + + {indexAttempt.total_docs_indexed}