summaryrefslogtreecommitdiff
path: root/web/index.html
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-03-08 07:23:49 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-03-08 07:23:49 +0000
commit91fd90465acf4f5f0190c68850332a329199abf3 (patch)
tree3bd5eadb5911177b06700ef22eac6dbb9669dba7 /web/index.html
parent076c0faa0ae63278b3120cd6622e64ba1e36e36b (diff)
feat: restore Running view (currently running + 24h execution history)
- Running tab in nav with live SSE log streams per running task - Execution history table (last 24h) with duration, cost, exit code, view logs - Poll loop refreshes running view when tab is active - Smart diff: only full re-render when task set changes; elapsed updated in place Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'web/index.html')
-rw-r--r--web/index.html5
1 files changed, 5 insertions, 0 deletions
diff --git a/web/index.html b/web/index.html
index 8bfa6bb..e32fbd4 100644
--- a/web/index.html
+++ b/web/index.html
@@ -18,6 +18,7 @@
<button class="tab active" data-tab="tasks">Tasks</button>
<button class="tab" data-tab="templates">Templates</button>
<button class="tab" data-tab="active">Active</button>
+ <button class="tab" data-tab="running">Running</button>
</nav>
<main id="app">
<div data-panel="tasks">
@@ -40,6 +41,10 @@
<div data-panel="active" hidden>
<div class="active-task-list"></div>
</div>
+ <div data-panel="running" hidden>
+ <div class="running-current"></div>
+ <div class="running-history"></div>
+ </div>
</main>
<dialog id="task-modal">