diff options
Diffstat (limited to 'web')
| -rw-r--r-- | web/app.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -229,9 +229,9 @@ function sortTasksByDate(tasks) { // ── Filter ──────────────────────────────────────────────────────────────────── const HIDE_STATES = new Set(['COMPLETED', 'FAILED']); -const ACTIVE_STATES = new Set(['PENDING', 'QUEUED', 'RUNNING', 'READY', 'BLOCKED']); -const INTERRUPTED_STATES = new Set(['CANCELLED', 'FAILED']); -const DONE_STATES = new Set(['COMPLETED', 'TIMED_OUT', 'BUDGET_EXCEEDED']); +const ACTIVE_STATES = new Set(['PENDING', 'QUEUED', 'RUNNING', 'READY']); +const INTERRUPTED_STATES = new Set(['CANCELLED', 'FAILED', 'BUDGET_EXCEEDED', 'BLOCKED']); +const DONE_STATES = new Set(['COMPLETED', 'TIMED_OUT']); // filterActiveTasks uses its own set (excludes PENDING — tasks "in-flight" only) const _PANEL_ACTIVE_STATES = new Set(['RUNNING', 'READY', 'QUEUED', 'BLOCKED']); |
