File tree 2 files changed +3
-2
lines changed
src/dashboard/Data/Config 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 4
4
[ Full Changelog] ( https://github.com/parse-community/parse-dashboard/compare/2.0.2...master )
5
5
6
6
* _ Contributing to this repo? Add info about your change here to be included in next release_
7
+ * Fix: Feature "masterkey parameters" requires Parse Server >= 3.9.0
7
8
8
9
### 2.0.2
9
10
[ Full Changelog] ( https://github.com/parse-community/parse-dashboard/compare/2.0.1...2.0.2 )
Original file line number Diff line number Diff line change @@ -236,10 +236,10 @@ export default class ConfigDialog extends React.Component {
236
236
237
237
{
238
238
/*
239
- Add `Requires master key` field if parse-server version >= 3.8 .0,
239
+ Add `Requires master key` field if parse-server version >= 3.9 .0,
240
240
that is the minimum version that supports this feature.
241
241
*/
242
- semver . valid ( this . props . parseServerVersion ) && semver . gte ( this . props . parseServerVersion , '3.8 .0' )
242
+ semver . valid ( this . props . parseServerVersion ) && semver . gte ( this . props . parseServerVersion , '3.9 .0' )
243
243
? < Field
244
244
label = {
245
245
< Label
You can’t perform that action at this time.
0 commit comments