diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-03-08 07:23:49 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-03-08 07:23:49 +0000 |
| commit | 91fd90465acf4f5f0190c68850332a329199abf3 (patch) | |
| tree | 3bd5eadb5911177b06700ef22eac6dbb9669dba7 /web/index.html | |
| parent | 076c0faa0ae63278b3120cd6622e64ba1e36e36b (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.html | 5 |
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"> |
