Browse Source

feat: add play/run icon to LLM Generate node title bar

Wire onRun and isExecuting props to BaseNode, matching the pattern
used in GenerateImageNode and GenerateVideoNode.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
handoff-20260429-1057
shrimbly 5 months ago
parent
commit
f9e229398d
  1. 2
      src/components/nodes/LLMGenerateNode.tsx

2
src/components/nodes/LLMGenerateNode.tsx

@ -108,6 +108,8 @@ export function LLMGenerateNode({ id, data, selected }: NodeProps<LLMGenerateNod
selected={selected}
hasError={nodeData.status === "error"}
commentNavigation={commentNavigation ?? undefined}
onRun={handleRegenerate}
isExecuting={isRunning}
>
{/* Image input - optional */}
<Handle

Loading…
Cancel
Save