File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -526,7 +526,6 @@ export default class BrowserCell extends Component {
526
526
hidden,
527
527
width,
528
528
current,
529
- onSelect,
530
529
onEditChange,
531
530
setCopyableValue,
532
531
onPointerCmdClick,
@@ -575,7 +574,7 @@ export default class BrowserCell extends Component {
575
574
) ;
576
575
}
577
576
578
- if ( selectedCells . list . has ( `${ row } -${ col } ` ) ) {
577
+ if ( selectedCells ? .list . has ( `${ row } -${ col } ` ) ) {
579
578
if ( selectedCells . rowStart === row ) {
580
579
classes . push ( styles . topBorder ) ;
581
580
}
Original file line number Diff line number Diff line change @@ -214,10 +214,10 @@ export default class DataBrowser extends React.Component {
214
214
e . ctrlKey || e . metaKey
215
215
? firstVisibleColumnIndex
216
216
: this . getNextVisibleColumnIndex (
217
- - 1 ,
218
- firstVisibleColumnIndex ,
219
- lastVisibleColumnIndex
220
- ) ,
217
+ - 1 ,
218
+ firstVisibleColumnIndex ,
219
+ lastVisibleColumnIndex
220
+ ) ,
221
221
} ,
222
222
} ) ;
223
223
e . preventDefault ( ) ;
You can’t perform that action at this time.
0 commit comments