diff --git a/web/frontend/src/views/ProjectView.vue b/web/frontend/src/views/ProjectView.vue index 448bdc8..143bc98 100644 --- a/web/frontend/src/views/ProjectView.vue +++ b/web/frontend/src/views/ProjectView.vue @@ -769,6 +769,11 @@ function taskStatusColor(s: string) { return m[s] || 'gray' } +function taskStatusLabel(s: string) { + if (s === 'revising') return t('projectView.status_revising') + return s +} + function decTypeColor(t: string) { const m: Record = { decision: 'blue', gotcha: 'red', workaround: 'yellow', @@ -1183,7 +1188,7 @@ async function addDecision() { class="flex items-center justify-between px-3 py-2 border border-orange-800/60 bg-orange-950/20 rounded text-sm hover:border-orange-600 no-underline block transition-colors">
{{ t.id }} - + {{ t.title }} escalated from {{ t.parent_task_id }} @@ -1211,7 +1216,7 @@ async function addDecision() { {{ t.id }} - + {{ t.title }}