Show the actual total number of tasks pending

This commit is contained in:
Eli Ribble 2026-03-12 00:30:19 +00:00
parent 40e7c8fdbe
commit 6d1003dcbd
No known key found for this signature in database
2 changed files with 23 additions and 6 deletions

View file

@ -106,7 +106,7 @@
const data = await response.json();
this.tasks = data.tasks || [];
this.totalPending = data.totalPending || this.tasks.length;
this.totalPending = data.total || this.tasks.length;
// Auto-select first task if available
if (this.tasks.length > 0 && !this.selectedTask) {