File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -248,19 +248,19 @@ const TableRow = {
248248 ...rowProps ,
249249 style,
250250 onClick : e => {
251- this . onRowClick ( e , rowProps . click ) ;
251+ this . onRowClick ( e , rowProps . onClick ) ;
252252 } ,
253253 onDblclick : e => {
254- this . onRowDoubleClick ( e , rowProps . dblclick ) ;
254+ this . onRowDoubleClick ( e , rowProps . onDblclick ) ;
255255 } ,
256256 onMouseenter : e => {
257- this . onMouseEnter ( e , rowProps . mouseenter ) ;
257+ this . onMouseEnter ( e , rowProps . onMouseenter ) ;
258258 } ,
259259 onMouseleave : e => {
260- this . onMouseLeave ( e , rowProps . mouseleave ) ;
260+ this . onMouseLeave ( e , rowProps . onMouseleave ) ;
261261 } ,
262262 onContextmenu : e => {
263- this . onContextMenu ( e , rowProps . contextmenu ) ;
263+ this . onContextMenu ( e , rowProps . onContextmenu ) ;
264264 } ,
265265 class : rowClassName ,
266266 'data-row-key' : rowKey ,
You can’t perform that action at this time.
0 commit comments