Removed all password trimming (#3109)
Этот коммит содержится в:
коммит произвёл
Christopher Speller
родитель
e9d1289fb0
Коммит
dd18b98b0b
@@ -22,7 +22,7 @@ class PasswordResetForm extends React.Component {
|
||||
handlePasswordReset(e) {
|
||||
e.preventDefault();
|
||||
|
||||
const password = ReactDOM.findDOMNode(this.refs.password).value.trim();
|
||||
const password = ReactDOM.findDOMNode(this.refs.password).value;
|
||||
if (!password || password.length < Constants.MIN_PASSWORD_LENGTH) {
|
||||
this.setState({
|
||||
error: (
|
||||
|
||||
Ссылка в новой задаче
Block a user