From 9159b62b1b65a9c6bc2ea4aad52cfca99f587d63 Mon Sep 17 00:00:00 2001 From: gsxdsm Date: Sat, 13 Jun 2026 16:16:34 -0700 Subject: [PATCH] fix(dashboard): widen Column onOpenDetailWithTab tab union to include "workflow" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit App.tsx and TaskCard.tsx already type the handler's initialTab as "changes" | "retries" | "workflow", but Column.tsx — the intermediary that forwards the prop — still declared the narrower "changes" | "retries", so the forward failed to typecheck (TS2322). Co-Authored-By: Claude Opus 4.8 (1M context) --- packages/dashboard/app/components/Column.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/dashboard/app/components/Column.tsx b/packages/dashboard/app/components/Column.tsx index 81070b309b..89093feaae 100644 --- a/packages/dashboard/app/components/Column.tsx +++ b/packages/dashboard/app/components/Column.tsx @@ -125,7 +125,7 @@ interface ColumnProps { * Called when the user clicks the "Subtask" button in the inline create card. */ onSubtaskBreakdown?: (description: string) => void; - onOpenDetailWithTab?: (task: Task | TaskDetail, initialTab: "changes" | "retries") => void; + onOpenDetailWithTab?: (task: Task | TaskDetail, initialTab: "changes" | "retries" | "workflow") => void; favoriteProviders?: string[]; favoriteModels?: string[]; onToggleFavorite?: (provider: string) => void;