summaryrefslogtreecommitdiff
path: root/web/index.html
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-03-08 07:24:58 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-03-08 07:24:58 +0000
commit7b53b9e30e81aca67e98c8fce04674461da2c78d (patch)
treef9507d63226637729e2430f24863d8cb0ede121e /web/index.html
parent91fd90465acf4f5f0190c68850332a329199abf3 (diff)
feat: make Running the default view on page load
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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 e32fbd4..3b7901c 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 active" data-tab="tasks">Tasks</button>
+ <button class="tab" 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>
+ <button class="tab active" data-tab="running">Running</button>
</nav>
<main id="app">
- <div data-panel="tasks">
+ <div data-panel="tasks" hidden>
<div class="task-list-toolbar">
<button class="filter-tab active" data-filter="active">Active</button>
<button class="filter-tab" data-filter="done">Done</button>
@@ -41,7 +41,7 @@
<div data-panel="active" hidden>
<div class="active-task-list"></div>
</div>
- <div data-panel="running" hidden>
+ <div data-panel="running">
<div class="running-current"></div>
<div class="running-history"></div>
</div>