mirror of
https://github.com/zvx-echo6/recon.git
synced 2026-05-20 06:34:40 +02:00
Fix progress column to show Qdrant count for completed sources
Complete sources now show "19,344 in Qdrant" instead of misleading extraction counts. Each status gets contextual progress display: complete → X in Qdrant, processing → X/Y in Qdrant (%), extracting → X/Y extracted, detected → dash. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
fed02186fa
commit
a40ce47127
1 changed files with 6 additions and 2 deletions
|
|
@ -44,9 +44,13 @@
|
|||
'<div class="text-small text-muted">' + s.zim_filename + '</div></td>' +
|
||||
'<td>' + (s.language || '\u2014') + '</td>' +
|
||||
'<td>' + RECON.fmt(s.article_count) + '</td>' +
|
||||
'<td>' + (es === 'processing' ?
|
||||
'<td>' + (es === 'complete' && pipeComplete > 0 ?
|
||||
RECON.fmt(pipeComplete) + ' in Qdrant' :
|
||||
es === 'processing' ?
|
||||
RECON.fmt(pipeComplete) + ' / ' + RECON.fmt(pipeTotal) + ' in Qdrant (' + pctDone + '%)' :
|
||||
RECON.fmt(s.processed_count) + ' / ' + RECON.fmt(s.article_count) + ' extracted') + '</td>' +
|
||||
es === 'extracting' ?
|
||||
RECON.fmt(s.processed_count) + ' / ' + RECON.fmt(s.article_count) + ' extracted' :
|
||||
'\u2014') + '</td>' +
|
||||
'<td>' + statusBadge + '</td>' +
|
||||
'<td>' + toggle + '</td>' +
|
||||
'<td><a href="' + browseUrl + '" target="_blank">Browse</a></td>' +
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue