diff --git a/packages/core/src/components/ConnectionLine/ConnectionLine.vue b/packages/core/src/components/ConnectionLine/ConnectionLine.vue index 53d572ca..b8930b7f 100644 --- a/packages/core/src/components/ConnectionLine/ConnectionLine.vue +++ b/packages/core/src/components/ConnectionLine/ConnectionLine.vue @@ -6,7 +6,6 @@ import { getMarkerId } from '../../utils/graph' const { sourceNode } = defineProps<{ sourceNode: GraphNode }>() const { - getNodes, connectionMode, connectionStartHandle, connectionPosition, @@ -94,7 +93,6 @@ export default { targetX, targetY, targetPosition, - nodes: getNodes, sourceNode, sourceHandle, markerEnd: `url(#${getMarkerId(connectionLineOptions.markerEnd)})`, diff --git a/packages/core/src/types/connection.ts b/packages/core/src/types/connection.ts index f5b7d12e..7f3cba2d 100644 --- a/packages/core/src/types/connection.ts +++ b/packages/core/src/types/connection.ts @@ -70,8 +70,6 @@ export interface ConnectionLineProps { connectionLineType: ConnectionLineType /** extra styles */ connectionLineStyle: CSSProperties - /** All currently stored nodes */ - nodes: GraphNode[] /** The source node of the connection line */ sourceNode: GraphNode /** The source handle element of the connection line */