next-arch-map 0.1.26 → 0.1.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/viewer/src/GraphView.tsx +2 -1
package/package.json
CHANGED
package/viewer/src/GraphView.tsx
CHANGED
|
@@ -413,6 +413,7 @@ export function GraphView(props: GraphViewProps) {
|
|
|
413
413
|
sourcePosition: Position.Right,
|
|
414
414
|
targetPosition: Position.Left,
|
|
415
415
|
selectable: true,
|
|
416
|
+
draggable: isDbTable,
|
|
416
417
|
style: isDbTable
|
|
417
418
|
? {
|
|
418
419
|
width: nodeWidth,
|
|
@@ -550,7 +551,7 @@ export function GraphView(props: GraphViewProps) {
|
|
|
550
551
|
onNodeMouseEnter={handleNodeMouseEnter}
|
|
551
552
|
onNodeMouseLeave={handleNodeMouseLeave}
|
|
552
553
|
onPaneClick={() => onSelectNode(null)}
|
|
553
|
-
nodesDraggable
|
|
554
|
+
nodesDraggable
|
|
554
555
|
nodesConnectable={false}
|
|
555
556
|
elementsSelectable
|
|
556
557
|
proOptions={{ hideAttribution: true }}
|