fix: add 'paused' tab to project list filter

This commit is contained in:
2026-04-09 19:33:50 -04:00
parent e5821ef3f8
commit 7d5611d00b
+1 -1
View File
@@ -125,7 +125,7 @@ function truncate(text: string | null, max = 120): string {
<!-- Filter tabs -->
<div class="filter-tabs">
<button
v-for="tab in ['all', 'active', 'completed', 'archived'] as const"
v-for="tab in ['all', 'active', 'paused', 'completed', 'archived'] as const"
:key="tab"
:class="['tab-btn', { active: activeTab === tab }]"
@click="activeTab = tab"