Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
[Full Changelog](https://github.com/parse-community/parse-dashboard/compare/2.0.2...master)

* _Contributing to this repo? Add info about your change here to be included in next release_
* Fix: Feature "masterkey parameters" requires Parse Server >= 3.9.0

### 2.0.2
[Full Changelog](https://github.com/parse-community/parse-dashboard/compare/2.0.1...2.0.2)
Expand Down
4 changes: 2 additions & 2 deletions src/dashboard/Data/Config/ConfigDialog.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,10 +236,10 @@ export default class ConfigDialog extends React.Component {

{
/*
Add `Requires master key` field if parse-server version >= 3.8.0,
Add `Requires master key` field if parse-server version >= 3.9.0,
that is the minimum version that supports this feature.
*/
semver.valid(this.props.parseServerVersion) && semver.gte(this.props.parseServerVersion, '3.8.0')
semver.valid(this.props.parseServerVersion) && semver.gte(this.props.parseServerVersion, '3.9.0')
? <Field
label={
<Label
Expand Down