From d6e5135c7c574b175c12b6dc6c244f8ecc8fe850 Mon Sep 17 00:00:00 2001 From: Alessandro Date: Mon, 28 Jul 2025 16:30:53 +0200 Subject: [PATCH] make it more visible --- examples/react/src/examples/Edges/index.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/examples/react/src/examples/Edges/index.tsx b/examples/react/src/examples/Edges/index.tsx index 820a48c5..8239f202 100644 --- a/examples/react/src/examples/Edges/index.tsx +++ b/examples/react/src/examples/Edges/index.tsx @@ -203,6 +203,8 @@ const initialEdges: Edge[] = [ markerEnd: { type: MarkerType.ArrowClosed, color: '#0000ff', + width: 40, + height: 40, }, }, { @@ -214,6 +216,8 @@ const initialEdges: Edge[] = [ markerEnd: { type: MarkerType.ArrowClosed, color: undefined, + width: 40, + height: 40, }, }, ]; @@ -239,7 +243,7 @@ const EdgesFlow = () => { const onConnect = useCallback((params: Connection | Edge) => setEdges((eds) => addEdge(params, eds)), [setEdges]); return ( -
+ <>