diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-04-03 23:18:45 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-04-03 23:18:45 +0000 |
| commit | 774a33431f7ae8a54082f5bca5db0019d6459a60 (patch) | |
| tree | 4b3be535525bd2e90ec2eeba78fe23a2646db0c1 /web/index.html | |
| parent | 18d56cc126358c65bbbca0f2e3cb5796eb6cc139 (diff) | |
feat: fold completed tab into ready panel; stories tab first
- Remove the standalone "All" tab; completed tasks (last 24h) now appear
at the bottom of the Ready tab under a "Completed (24h)" section header
- Move Stories tab to the first position in the nav bar
- Drop 'all' from badge count computation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'web/index.html')
| -rw-r--r-- | web/index.html | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/web/index.html b/web/index.html index 484bbfb..f212ca6 100644 --- a/web/index.html +++ b/web/index.html @@ -39,13 +39,12 @@ </div> </header> <nav class="tab-bar"> + <button class="tab" data-tab="stories" title="Stories">📖</button> <button class="tab active" data-tab="queue" title="Queue">⏳</button> <button class="tab" data-tab="interrupted" title="Interrupted">⚠️<span class="tab-count-badge" hidden></span></button> <button class="tab" data-tab="ready" title="Ready">✅<span class="tab-count-badge" hidden></span></button> <button class="tab" data-tab="running" title="Running">▶️<span class="tab-count-badge" hidden></span></button> - <button class="tab" data-tab="all" title="All">☰<span class="tab-count-badge" hidden></span></button> <button class="tab" data-tab="drops" title="Drops">📁</button> - <button class="tab" data-tab="stories" title="Stories">📖</button> <button class="tab" data-tab="stats" title="Stats">📊</button> <button class="tab" data-tab="settings" title="Settings">⚙️</button> </nav> @@ -60,14 +59,12 @@ </div> <div data-panel="ready" hidden> <div class="panel-task-list"></div> + <div class="ready-completed-history"></div> </div> <div data-panel="running" hidden> <div class="running-current"></div> <div class="running-history"></div> </div> - <div data-panel="all" hidden> - <div class="all-history"></div> - </div> <div data-panel="drops" hidden> <div class="drops-panel"></div> </div> |
