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 = {
248
248
...rowProps ,
249
249
style,
250
250
onClick : e => {
251
- this . onRowClick ( e , rowProps . click ) ;
251
+ this . onRowClick ( e , rowProps . onClick ) ;
252
252
} ,
253
253
onDblclick : e => {
254
- this . onRowDoubleClick ( e , rowProps . dblclick ) ;
254
+ this . onRowDoubleClick ( e , rowProps . onDblclick ) ;
255
255
} ,
256
256
onMouseenter : e => {
257
- this . onMouseEnter ( e , rowProps . mouseenter ) ;
257
+ this . onMouseEnter ( e , rowProps . onMouseenter ) ;
258
258
} ,
259
259
onMouseleave : e => {
260
- this . onMouseLeave ( e , rowProps . mouseleave ) ;
260
+ this . onMouseLeave ( e , rowProps . onMouseleave ) ;
261
261
} ,
262
262
onContextmenu : e => {
263
- this . onContextMenu ( e , rowProps . contextmenu ) ;
263
+ this . onContextMenu ( e , rowProps . onContextmenu ) ;
264
264
} ,
265
265
class : rowClassName ,
266
266
'data-row-key' : rowKey ,
You can’t perform that action at this time.
0 commit comments