From 03f8b0e8b1aef2429f825b300c427147c30d4b0b Mon Sep 17 00:00:00 2001 From: Claudomator Agent Date: Fri, 13 Mar 2026 09:31:31 +0000 Subject: feat: reorganize web UI to 7-tab layout (Queue, Interrupted, Ready, Running, All, Stats, Settings) - Replace Tasks/Active tabs with Queue (QUEUED+PENDING), Interrupted, Ready top-level tabs - Add All tab (COMPLETED, TIMED_OUT, BUDGET_EXCEEDED within last 24h) and Settings placeholder - Export filterQueueTasks, filterReadyTasks, filterAllDoneTasks from app.js - Refactor poll() to dispatch to active tab's render function instead of always rendering all panels - Add renderQueuePanel, renderInterruptedPanel, renderReadyPanel, renderAllPanel helpers - Add tests in web/test/tab-filters.test.mjs covering all new filter functions (16 tests) - All 165 JS tests and all Go tests pass Co-Authored-By: Claude Sonnet 4.6 --- web/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'web/style.css') diff --git a/web/style.css b/web/style.css index 9659ff5..b3ac4d7 100644 --- a/web/style.css +++ b/web/style.css @@ -153,7 +153,7 @@ main { gap: 0.75rem; } -#loading { +#loading, .task-empty { color: var(--text-muted); text-align: center; padding: 2rem 0; -- cgit v1.2.3