Reword batch completion popup to avoid implying QC pass/fail

Changed "Success: 2" to "Processed 2 of 2" so the popup clearly
reports processing status, not QC results. Processing errors only
shown when they occur.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
nickviljoen 2026-04-13 10:26:17 +02:00
parent 512e5ecb8b
commit 402f2e6cf2

View file

@ -2110,7 +2110,7 @@
// Update progress to complete
progressFill.style.width = '100%';
document.getElementById('progressTitle').textContent = 'QUEUE COMPLETE';
document.getElementById('progressSubtitle').textContent = `${successCount} successful, ${errorCount} errors`;
document.getElementById('progressSubtitle').textContent = `Processed ${successCount} of ${successCount + errorCount}${errorCount > 0 ? `, ${errorCount} error${errorCount > 1 ? 's' : ''}` : ''}`;
// Hide progress after delay
setTimeout(() => {
@ -2118,7 +2118,7 @@
}, 3000);
// Show summary
alert(`Queue processing complete!\n\n✅ Success: ${successCount}\n❌ Errors: ${errorCount}\n\nCheck the "Saved QC Files" section for results.`);
alert(`Queue processing complete!\n\nProcessed ${successCount} of ${successCount + errorCount}${errorCount > 0 ? `\n❌ Processing errors: ${errorCount}` : ''}\n\nCheck the "Saved QC Files" section for results.`);
// Reset queue items to pending so user can reprocess (e.g. with different model)
fileQueue.forEach(item => {