From e9188c636c868a09abfc65cbc5474d4ea3dd97f2 Mon Sep 17 00:00:00 2001 From: shrimbly Date: Tue, 3 Feb 2026 23:22:47 +1300 Subject: [PATCH] fix(quick-003): allow Output node to accept video connections - Add "video" to Output node's getNodeHandles inputs list - Consistent with isValidConnection and findCompatibleHandle video->output handling - Output node now properly accepts VideoStitch connections via all code paths --- src/components/WorkflowCanvas.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/WorkflowCanvas.tsx b/src/components/WorkflowCanvas.tsx index a017a3d3..74e9e8d2 100644 --- a/src/components/WorkflowCanvas.tsx +++ b/src/components/WorkflowCanvas.tsx @@ -111,7 +111,7 @@ const getNodeHandles = (nodeType: string): { inputs: string[]; outputs: string[] case "splitGrid": return { inputs: ["image"], outputs: ["reference"] }; case "output": - return { inputs: ["image"], outputs: [] }; + return { inputs: ["image", "video"], outputs: [] }; case "outputGallery": return { inputs: ["image"], outputs: [] }; case "imageCompare":