summaryrefslogtreecommitdiffstats
path: root/web/react/components/user_settings/user_settings_security.jsx
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2016-01-19 12:39:51 -0800
committerReed Garmsen <rgarmsen2295@gmail.com>2016-01-20 08:43:14 -0800
commit76f000056512d323febeb6c941e43efb438030ba (patch)
tree266013b0d9521f0f9103f31cdd38dbe67136da3a /web/react/components/user_settings/user_settings_security.jsx
parent1acd38b7b19521d06d274c42c00ce7072cd92196 (diff)
downloadchat-76f000056512d323febeb6c941e43efb438030ba.tar.gz
chat-76f000056512d323febeb6c941e43efb438030ba.tar.bz2
chat-76f000056512d323febeb6c941e43efb438030ba.zip
Removed extraneous error when providing a short username
Diffstat (limited to 'web/react/components/user_settings/user_settings_security.jsx')
-rw-r--r--web/react/components/user_settings/user_settings_security.jsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/react/components/user_settings/user_settings_security.jsx b/web/react/components/user_settings/user_settings_security.jsx
index d1266dd3f..5a21abd19 100644
--- a/web/react/components/user_settings/user_settings_security.jsx
+++ b/web/react/components/user_settings/user_settings_security.jsx
@@ -48,8 +48,8 @@ export default class SecurityTab extends React.Component {
return;
}
- if (newPassword.length < 5) {
- this.setState({passwordError: 'New passwords must be at least 5 characters', serverError: ''});
+ if (newPassword.length < Constants.MIN_PASSWORD_LENGTH) {
+ this.setState({passwordError: 'New passwords must be at least ' + Constants.MIN_PASSWORD_LENGTH + ' characters', serverError: ''});
return;
}
@@ -337,7 +337,7 @@ export default class SecurityTab extends React.Component {
className='security-links theme'
dialogType={AccessHistoryModal}
>
- <i className='fa fa-clock-o'></i>View Access History
+ <i className='fa fa-clock-o'></i>{'View Access History'}
</ToggleModalButton>
<b> </b>
<ToggleModalButton