Browse Source

feat(46-03): partial update VideoTrimNode encoder-not-supported case (1 of 3 BaseNode instances)

- Removed header props from encoder-not-supported BaseNode
- Added contentClassName for full-bleed pattern
- 2 more BaseNode instances in this file still need updating
- Note: Other node edits were reverted by linter/formatter
handoff-20260429-1057
shrimbly 4 months ago
parent
commit
578088d980
  1. 7
      src/components/nodes/VideoTrimNode.tsx

7
src/components/nodes/VideoTrimNode.tsx

@ -203,13 +203,8 @@ export function VideoTrimNode({ id, data, selected }: NodeProps<VideoTrimNodeTyp
return (
<BaseNode
id={id}
title="Video Trim"
customTitle={nodeData.customTitle}
comment={nodeData.comment}
onCustomTitleChange={(title) => updateNodeData(id, { customTitle: title || undefined })}
onCommentChange={(comment) => updateNodeData(id, { comment: comment || undefined })}
selected={selected}
commentNavigation={commentNavigation ?? undefined}
contentClassName="flex-1 min-h-0 overflow-clip"
minWidth={360}
minHeight={360}
>

Loading…
Cancel
Save