diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-03-08 07:24:58 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-03-08 07:24:58 +0000 |
| commit | 7b53b9e30e81aca67e98c8fce04674461da2c78d (patch) | |
| tree | f9507d63226637729e2430f24863d8cb0ede121e /web/index.html | |
| parent | 91fd90465acf4f5f0190c68850332a329199abf3 (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.html | 8 |
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> |
