Browse Source

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
handoff-20260429-1057
shrimbly 5 months ago
parent
commit
e9188c636c
  1. 2
      src/components/WorkflowCanvas.tsx

2
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":

Loading…
Cancel
Save