Skip to content

Commit cc50c32

Browse files
authored
Merge branch 'alpha' into feature/unique-pointers
2 parents 029af05 + 135f5b6 commit cc50c32

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

changelogs/CHANGELOG_alpha.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [6.0.0-alpha.30](https://github.com/ParsePlatform/parse-dashboard/compare/6.0.0-alpha.29...6.0.0-alpha.30) (2025-03-03)
2+
3+
4+
### Features
5+
6+
* Add cell selection in data browser on space bar touch down ([#2661](https://github.com/ParsePlatform/parse-dashboard/issues/2661)) ([9d623a9](https://github.com/ParsePlatform/parse-dashboard/commit/9d623a97a4e9ff9692f72191a33441a22fb6956e))
7+
18
# [6.0.0-alpha.29](https://github.com/ParsePlatform/parse-dashboard/compare/6.0.0-alpha.28...6.0.0-alpha.29) (2025-02-14)
29

310

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse-dashboard",
3-
"version": "6.0.0-alpha.29",
3+
"version": "6.0.0-alpha.30",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/ParsePlatform/parse-dashboard"

src/dashboard/Data/Browser/DataBrowser.react.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,15 @@ export default class DataBrowser extends React.Component {
419419
e.preventDefault();
420420
}
421421
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;
422431
}
423432
}
424433

0 commit comments

Comments
 (0)