successfully implemented scheduler
This commit is contained in:
@@ -548,9 +548,8 @@ class DNSReconApp {
|
||||
// Update progress bar and compact display
|
||||
if (this.elements.progressFill) {
|
||||
const completed = status.indicators_completed || 0;
|
||||
const enqueued = status.task_queue_size || 0;
|
||||
const totalTasks = completed + enqueued;
|
||||
const progressPercentage = totalTasks > 0 ? (completed / totalTasks) * 100 : 0;
|
||||
const totalTasks = status.total_tasks_ever_enqueued || 0;
|
||||
const progressPercentage = status.progress_percentage || 0;
|
||||
|
||||
this.elements.progressFill.style.width = `${progressPercentage}%`;
|
||||
if (this.elements.progressCompact) {
|
||||
|
||||
Reference in New Issue
Block a user