Browse Source

fix: add missing videoTrim case to executeWorkflow switch

Without this, videoTrim nodes were silently skipped during full
workflow execution (Cmd+Enter). The regenerateNode and
executeSelectedNodes paths already had it.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
handoff-20260429-1057
shrimbly 5 months ago
parent
commit
09fd93cd02
  1. 3
      src/store/workflowStore.ts

3
src/store/workflowStore.ts

@ -941,6 +941,9 @@ export const useWorkflowStore = create<WorkflowStore>((set, get) => ({
case "easeCurve":
await executeEaseCurve(executionCtx);
break;
case "videoTrim":
await executeVideoTrim(executionCtx);
break;
case "videoFrameGrab":
await executeVideoFrameGrab(executionCtx);
break;

Loading…
Cancel
Save