Rename the "All tasks" tab to "Explore"

Also refreshed web/README.md while touching this section: fixed the
project/project-configure header descriptions to describe the current
inline .title-back arrow (they still described the old separate "Back
to project" button), and added a "Card detail" section documenting
CardView/CardConfigureView/CardManageMenu, which had none.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-05 00:36:38 +01:00
co-authored by Claude Sonnet 5
parent 4cd59234e2
commit 81900f4d06
2 changed files with 39 additions and 13 deletions
+3 -3
View File
@@ -21,9 +21,9 @@ const statuses = ref<CardStatus[]>([])
const loadError = ref<string | null>(null)
const actionError = ref<string | null>(null)
// Tab order is unchanged (All tasks first); Kanban is just the default view.
// Tab order is unchanged (Explore first); Kanban is just the default view.
const tabs = [
{ key: 'all', label: 'All tasks' },
{ key: 'all', label: 'Explore' },
{ key: 'kanban', label: 'Kanban' },
] as const
const activeTab = ref<(typeof tabs)[number]['key']>('kanban')
@@ -191,7 +191,7 @@ async function onCreateInColumn(column: Column) {
</button>
</div>
<!-- Tab: All tasks -->
<!-- Tab: Explore -->
<div v-show="activeTab === 'all'" class="tabs__panel" role="tabpanel">
<p class="muted">{{ summary }}</p>