feat(HAI-007): complete Step 1 — set specifying status during triage

This commit is contained in:
Dustin Byrne
2026-03-25 20:52:01 -04:00
parent f6dc070bd8
commit 64b28a012e
2 changed files with 4 additions and 1 deletions

View File

@@ -20,7 +20,7 @@ const COLUMN_TEXT_COLOR_MAP: Record<Column, string> = {
done: "var(--done)",
};
const ACTIVE_STATUSES = new Set(["planning", "researching", "executing", "finalizing", "merging"]);
const ACTIVE_STATUSES = new Set(["planning", "researching", "executing", "finalizing", "merging", "specifying"]);
interface TaskCardProps {
task: Task;