fix: show scheduled kanban tasks in dashboard

This commit is contained in:
roycepersonalassistant 2026-05-18 20:25:40 -07:00 committed by Teknium
parent a5c2836b07
commit 6c4f11c64a
3 changed files with 35 additions and 3 deletions

View file

@ -129,8 +129,14 @@ def _conn(board: Optional[str] = None):
# Columns shown by the dashboard, in left-to-right order. "archived" is
# available via a filter toggle rather than a visible column.
#
# Keep this in sync with kanban_db.VALID_STATUSES. In particular,
# ``scheduled`` is a first-class waiting column used for time-based follow-ups;
# if it is omitted here, the board-level fallback below mis-buckets scheduled
# tasks into ``todo`` and makes the dashboard look like the Scheduled column
# disappeared.
BOARD_COLUMNS: list[str] = [
"triage", "todo", "ready", "running", "blocked", "done",
"triage", "todo", "scheduled", "ready", "running", "blocked", "done",
]