@@ -129,13 +129,13 @@ class Index extends React.Component {
129
129
} ) ;
130
130
}
131
131
132
- handleInsertClick = ( ) => {
132
+ handleInsertButtonClick = ( ) => {
133
133
this . setPersistentState ( {
134
134
insertPanelsAreOpen : ! this . state . insertPanelsAreOpen ,
135
135
} ) ;
136
136
}
137
137
138
- handleNodeFormatClick = ( ) => {
138
+ handleNodeFormatButtonClick = ( ) => {
139
139
this . setPersistentState ( {
140
140
nodeFormatDrawerIsOpen : ! this . state . nodeFormatDrawerIsOpen ,
141
141
edgeFormatDrawerIsOpen : false ,
@@ -148,7 +148,7 @@ class Index extends React.Component {
148
148
} ) ;
149
149
}
150
150
151
- handleEdgeFormatClick = ( ) => {
151
+ handleEdgeFormatButtonClick = ( ) => {
152
152
this . setPersistentState ( {
153
153
edgeFormatDrawerIsOpen : ! this . state . edgeFormatDrawerIsOpen ,
154
154
nodeFormatDrawerIsOpen : false ,
@@ -407,9 +407,9 @@ class Index extends React.Component {
407
407
onMenuButtonClick = { this . handleMainMenuButtonClick }
408
408
onUndoButtonClick = { this . handleUndoButtonClick }
409
409
onRedoButtonClick = { this . handleRedoButtonClick }
410
- onInsertClick = { this . handleInsertClick }
411
- onNodeFormatClick = { this . handleNodeFormatClick }
412
- onEdgeFormatClick = { this . handleEdgeFormatClick }
410
+ onInsertClick = { this . handleInsertButtonClick }
411
+ onNodeFormatClick = { this . handleNodeFormatButtonClick }
412
+ onEdgeFormatClick = { this . handleEdgeFormatButtonClick }
413
413
onZoomInButtonClick = { this . handleZoomInButtonClick }
414
414
onZoomOutButtonClick = { this . handleZoomOutButtonClick }
415
415
onZoomOutMapButtonClick = { this . handleZoomOutMapButtonClick }
0 commit comments