Skip to content

Commit

Permalink
Small style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Weves committed Aug 12, 2023
1 parent 4a2b595 commit fb0a165
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions web/src/app/admin/indexing/status/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,20 +164,22 @@ function Main() {
)?.toFixed(2);
statusDisplay = (
<div className="text-gray-400">
<b>In Progress...</b>{" "}
In Progress...{" "}
{connectorIndexingStatus?.latest_index_attempt
?.num_docs_indexed ? (
<div className="text-xs mt-0.5">
<div>
Current Run:{" "}
<i>Current Run:</i>{" "}
{
connectorIndexingStatus.latest_index_attempt
.num_docs_indexed
}{" "}
docs indexed
</div>
{docsPerMinute && (
<div>Speed: ~{docsPerMinute} docs / min</div>
<div>
<i>Speed:</i> ~{docsPerMinute} docs / min
</div>
)}
</div>
) : null}
Expand Down

0 comments on commit fb0a165

Please sign in to comment.