aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/auth/Password.js
diff options
context:
space:
mode:
authorLibravatar haraldox <hnaumann+github@gmail.com>2018-01-19 10:03:05 +0100
committerLibravatar haraldox <hnaumann+github@gmail.com>2018-01-19 10:03:05 +0100
commit34949a6a005df240fa79f679675a0de1f3839776 (patch)
tree3704f5e4df56c43ac6724cdadcd5d34e5aeb3897 /src/components/auth/Password.js
parentMerge pull request #587 from meetfranz/feature/remove-miner (diff)
downloadferdium-app-34949a6a005df240fa79f679675a0de1f3839776.tar.gz
ferdium-app-34949a6a005df240fa79f679675a0de1f3839776.tar.zst
ferdium-app-34949a6a005df240fa79f679675a0de1f3839776.zip
fix property change due to mobx-react-form update
validate -> validators
Diffstat (limited to 'src/components/auth/Password.js')
-rw-r--r--src/components/auth/Password.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/auth/Password.js b/src/components/auth/Password.js
index d2b196853..5bcc80b6e 100644
--- a/src/components/auth/Password.js
+++ b/src/components/auth/Password.js
@@ -60,7 +60,7 @@ export default class Password extends Component {
60 email: { 60 email: {
61 label: this.context.intl.formatMessage(messages.emailLabel), 61 label: this.context.intl.formatMessage(messages.emailLabel),
62 value: '', 62 value: '',
63 validate: [required, email], 63 validators: [required, email],
64 }, 64 },
65 }, 65 },
66 }, this.context.intl); 66 }, this.context.intl);