Skip to content

Commit e4eb0a4

Browse files
authored
Merge branch 'alpha' into feat/add-scoll-option
2 parents 5d8cd0b + 6e0bf33 commit e4eb0a4

File tree

5 files changed

+22
-5
lines changed

5 files changed

+22
-5
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1329,6 +1329,9 @@ In the example above, the query string will be escaped and added to the url, res
13291329
> [!Tip]
13301330
> For guidance on how to create the URL query for a dashboard data browser filter, open the data browser and set the filter. Then copy the browser URL and unescape it. The query constraints in `?filters=[...]` will give you an idea of the constraint syntax.
13311331
1332+
> [!Note]
1333+
> For security reasons, the link `<a>` tag contains the `rel="noreferrer"` attribute, which prevents the target website to know the referring website which in this case is the Parse Dashboard URL. That attribute is widely supported across modern browsers, but if in doubt check your browser's compatibility.
1334+
13321335
# Contributing
13331336

13341337
We really want Parse to be yours, to see it grow and thrive in the open source community. Please see the [Contributing to Parse Dashboard guide](CONTRIBUTING.md).

changelogs/CHANGELOG_alpha.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# [7.3.0-alpha.26](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.25...7.3.0-alpha.26) (2025-07-20)
2+
3+
4+
### Bug Fixes
5+
6+
* Incorrect table cell width in App Settings table ([#2933](https://github.com/parse-community/parse-dashboard/issues/2933)) ([d46765b](https://github.com/parse-community/parse-dashboard/commit/d46765b16abfe3eda6d77525ae2f95a6f4be620c))
7+
8+
# [7.3.0-alpha.25](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.24...7.3.0-alpha.25) (2025-07-19)
9+
10+
11+
### Bug Fixes
12+
13+
* Modal text input can be resized smaller than its cell in Safari browser ([#2930](https://github.com/parse-community/parse-dashboard/issues/2930)) ([82a0cdc](https://github.com/parse-community/parse-dashboard/commit/82a0cdc397d58494c0c61a8241767d4930f742f1))
14+
115
# [7.3.0-alpha.24](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.23...7.3.0-alpha.24) (2025-07-19)
216

317

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": "7.3.0-alpha.24",
3+
"version": "7.3.0-alpha.26",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/parse-community/parse-dashboard"

src/components/Field/Field.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
display: flex;
3030
align-items: center;
3131
flex-shrink: 0;
32-
width: calc(var(--modal-min-width) * var(--modal-label-ratio));
33-
max-width: calc(var(--modal-min-width) * var(--modal-label-ratio));
32+
width: calc(var(--modal-min-width, 540px) * var(--modal-label-ratio, 0.5));
33+
max-width: calc(var(--modal-min-width, 540px) * var(--modal-label-ratio, 0.5));
3434
}
3535

3636
.right {

0 commit comments

Comments
 (0)