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 = ({
89
89
const [ initialized , setInitialized ] = React . useState ( false ) ;
90
90
91
91
if ( ! initialized ) {
92
+ // Tell Neo4j Desktop to disable capturing right clicking
93
+ window . neo4jDesktopApi &&
94
+ window . neo4jDesktopApi . showMenuOnRightClick &&
95
+ window . neo4jDesktopApi . showMenuOnRightClick ( false ) ;
92
96
setInitialized ( true ) ;
93
97
initializeApplication ( initialized ) ;
94
98
}
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ export function injectNewRecordsIntoGraphVisualization(
223
223
props . data . nodeLabels ,
224
224
props . data . linkTypes ,
225
225
props . style . colorScheme ,
226
- props . engine . fields ,
226
+ mergedFields ,
227
227
props . style . nodeColorProp ,
228
228
props . style . defaultNodeColor ,
229
229
props . style . nodeSizeProp ,
You can’t perform that action at this time.
0 commit comments