We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58b38f8 commit 9d623a9Copy full SHA for 9d623a9
src/dashboard/Data/Browser/DataBrowser.react.js
@@ -419,6 +419,15 @@ export default class DataBrowser extends React.Component {
419
e.preventDefault();
420
}
421
break;
422
+ case 32: // Space
423
+ // Only handle space if not editing and there's a current row selected
424
+ if (!this.state.editing && this.state.current?.row >= 0) {
425
+ const rowId = this.props.data[this.state.current.row].id;
426
+ const isSelected = this.props.selection[rowId];
427
+ this.props.selectRow(rowId, !isSelected);
428
+ e.preventDefault();
429
+ }
430
+ break;
431
432
433
0 commit comments