summaryrefslogtreecommitdiff
path: root/web/index.html
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-03-08 21:06:05 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-03-08 21:06:05 +0000
commitf0329108dac294be199f53102afafbe1c5c9ab97 (patch)
tree40d4f9dfe0730b270157b924791702e547156466 /web/index.html
parent632ea5a44731af94b6238f330a3b5440906c8ae7 (diff)
fix(web): resolve merge conflicts and fix tab navigation
- Remove unresolved merge markers in app.js. - Set 'tasks' as the default active tab and panel on boot. - Synchronize initial HTML state with JS tab switching logic. - Fix broken Draft with AI button handler from bad merge.
Diffstat (limited to 'web/index.html')
-rw-r--r--web/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/web/index.html b/web/index.html
index a2800b0..ae6c6d2 100644
--- a/web/index.html
+++ b/web/index.html
@@ -15,13 +15,13 @@
<button id="btn-new-task" class="btn-primary">New Task</button>
</header>
<nav class="tab-bar">
- <button class="tab" data-tab="tasks">Tasks</button>
+ <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 active" data-tab="running">Running</button>
+ <button class="tab" data-tab="running">Running</button>
</nav>
<main id="app">
- <div data-panel="tasks" hidden>
+ <div data-panel="tasks">
<div class="task-list-toolbar">
<button class="filter-tab active" data-filter="active">Active</button>
<button class="filter-tab" data-filter="interrupted">Interrupted</button>
@@ -42,7 +42,7 @@
<div data-panel="active" hidden>
<div class="active-task-list"></div>
</div>
- <div data-panel="running">
+ <div data-panel="running" hidden>
<div class="running-current"></div>
<div class="running-history"></div>
</div>