aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/auth/Login.js
diff options
context:
space:
mode:
authorLibravatar haraldox <hnaumann+github@gmail.com>2018-01-30 12:10:12 +0100
committerLibravatar haraldox <hnaumann+github@gmail.com>2018-01-30 12:10:12 +0100
commitfdbd7f58eaf9597ae879878ab76a90148bc789eb (patch)
tree7dbc43421b84d63319ccf1e22fe597763fbf92b4 /src/components/auth/Login.js
parentMerge branch 'fix-invite-screen' into feature/invite-button (diff)
parentMerge pull request #599 from meetfranz/fix-form-validation (diff)
downloadferdium-app-fdbd7f58eaf9597ae879878ab76a90148bc789eb.tar.gz
ferdium-app-fdbd7f58eaf9597ae879878ab76a90148bc789eb.tar.zst
ferdium-app-fdbd7f58eaf9597ae879878ab76a90148bc789eb.zip
Merge branch 'develop' into feature/invite-button
Diffstat (limited to 'src/components/auth/Login.js')
-rw-r--r--src/components/auth/Login.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/auth/Login.js b/src/components/auth/Login.js
index 67e92849d..4a3cd6776 100644
--- a/src/components/auth/Login.js
+++ b/src/components/auth/Login.js
@@ -76,12 +76,12 @@ export default class Login extends Component {
76 email: { 76 email: {
77 label: this.context.intl.formatMessage(messages.emailLabel), 77 label: this.context.intl.formatMessage(messages.emailLabel),
78 value: '', 78 value: '',
79 validate: [required, email], 79 validators: [required, email],
80 }, 80 },
81 password: { 81 password: {
82 label: this.context.intl.formatMessage(messages.passwordLabel), 82 label: this.context.intl.formatMessage(messages.passwordLabel),
83 value: '', 83 value: '',
84 validate: [required], 84 validators: [required],
85 type: 'password', 85 type: 'password',
86 }, 86 },
87 }, 87 },