adding blocked status to tui

This commit is contained in:
viljarb
2026-03-12 13:18:15 +01:00
parent 5b0c69e671
commit 1f98308d9b
9 changed files with 80 additions and 18 deletions

View File

@@ -66,6 +66,8 @@ func StatusStyle(status string) lipgloss.Style {
return style.Foreground(FaintText)
case "in_progress":
return style.Foreground(Warning)
case "blocked":
return style.Foreground(Error)
default:
return style.Foreground(SecondaryText)
}