mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-06-08 08:11:38 +00:00
fix: show scheduled kanban tasks in dashboard
This commit is contained in:
parent
a5c2836b07
commit
6c4f11c64a
3 changed files with 35 additions and 3 deletions
|
|
@ -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",
|
||||
]
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue