diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a521df457..1be086115b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/src/dashboard/Data/Config/ConfigDialog.react.js b/src/dashboard/Data/Config/ConfigDialog.react.js index 5994fea1b8..1f7b2a0e53 100644 --- a/src/dashboard/Data/Config/ConfigDialog.react.js +++ b/src/dashboard/Data/Config/ConfigDialog.react.js @@ -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') ?