File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,10 @@ const Application = ({
8989 const [ initialized , setInitialized ] = React . useState ( false ) ;
9090
9191 if ( ! initialized ) {
92+ // Tell Neo4j Desktop to disable capturing right clicking
93+ window . neo4jDesktopApi &&
94+ window . neo4jDesktopApi . showMenuOnRightClick &&
95+ window . neo4jDesktopApi . showMenuOnRightClick ( false ) ;
9296 setInitialized ( true ) ;
9397 initializeApplication ( initialized ) ;
9498 }
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ export function injectNewRecordsIntoGraphVisualization(
223223 props . data . nodeLabels ,
224224 props . data . linkTypes ,
225225 props . style . colorScheme ,
226- props . engine . fields ,
226+ mergedFields ,
227227 props . style . nodeColorProp ,
228228 props . style . defaultNodeColor ,
229229 props . style . nodeSizeProp ,
You can’t perform that action at this time.
0 commit comments