add indicators

This commit is contained in:
2026-03-07 23:31:44 +01:00
parent 640c8b7d98
commit cbd9ef6c53
6 changed files with 134 additions and 14 deletions

View File

@@ -4,13 +4,13 @@ import {
BaseNode,
BaseNodeContent,
BaseNodeFooter,
BaseNodeFooterText,
BaseNodeHeaderRow,
} from './BaseNode'
import { NodeMenubar } from './NodeMenubar'
import { Input } from '../ui/input'
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '../ui/select'
import { Switch } from '../ui/switch'
import { NodeFooterEdgeIndicators } from './NodeFooterEdgeIndicators'
import { NodeHeaderTitle } from './NodeHeaderTitle'
import { OutputHandle } from './NodeHandles'
import { Variable } from 'lucide-react'
@@ -134,8 +134,7 @@ export const VariableNode = memo(function VariableNode({ id, data }: Props) {
</BaseNodeContent>
<BaseNodeFooter>
<BaseNodeFooterText>
</BaseNodeFooterText>
<NodeFooterEdgeIndicators nodeId={id} nodeType="variable" />
</BaseNodeFooter>
</BaseNode>
)