Skip to content

Commit da808c3

Browse files
authored
Merge branch 'alpha' into fix/reload-cloud-config
2 parents 880c3e3 + 06fc86a commit da808c3

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

changelogs/CHANGELOG_alpha.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [7.1.0-alpha.12](https://github.com/parse-community/parse-dashboard/compare/7.1.0-alpha.11...7.1.0-alpha.12) (2025-04-29)
2+
3+
4+
### Bug Fixes
5+
6+
* Clicking on pointer in data browser when using pagination does not reset to first page ([#2767](https://github.com/parse-community/parse-dashboard/issues/2767)) ([ab512e5](https://github.com/parse-community/parse-dashboard/commit/ab512e52d137cdb30167ece53a9ce12c38f5d155))
7+
18
# [7.1.0-alpha.11](https://github.com/parse-community/parse-dashboard/compare/7.1.0-alpha.10...7.1.0-alpha.11) (2025-04-28)
29

310

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse-dashboard",
3-
"version": "7.1.0-alpha.11",
3+
"version": "7.1.0-alpha.12",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/parse-community/parse-dashboard"

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

+4
Original file line numberDiff line numberDiff line change
@@ -1172,6 +1172,10 @@ class Browser extends DashboardView {
11721172
this.props.navigate(
11731173
generatePath(this.context, `browser/${className}?filters=${encodeURIComponent(filters)}`)
11741174
);
1175+
1176+
this.setState({
1177+
skip: 0,
1178+
});
11751179
}
11761180

11771181
handlePointerCmdClick({ className, id, field = 'objectId' }) {

0 commit comments

Comments
 (0)