fix: add 'paused' tab to project list filter
This commit is contained in:
@@ -125,7 +125,7 @@ function truncate(text: string | null, max = 120): string {
|
|||||||
<!-- Filter tabs -->
|
<!-- Filter tabs -->
|
||||||
<div class="filter-tabs">
|
<div class="filter-tabs">
|
||||||
<button
|
<button
|
||||||
v-for="tab in ['all', 'active', 'completed', 'archived'] as const"
|
v-for="tab in ['all', 'active', 'paused', 'completed', 'archived'] as const"
|
||||||
:key="tab"
|
:key="tab"
|
||||||
:class="['tab-btn', { active: activeTab === tab }]"
|
:class="['tab-btn', { active: activeTab === tab }]"
|
||||||
@click="activeTab = tab"
|
@click="activeTab = tab"
|
||||||
|
|||||||
Reference in New Issue
Block a user