Clear the password input boxes when user enter incorrect Retype New Password.

Этот коммит содержится в:
Khoa, Le Ngoc
2016-02-03 13:24:15 +07:00
родитель d31ae20738
Коммит 41bf14ade2

Просмотреть файл

@@ -88,7 +88,8 @@ class SecurityTab extends React.Component {
}
if (newPassword !== confirmPassword) {
this.setState({passwordError: formatMessage(holders.passwordMatchError), serverError: ''});
var defaultState = Object.assign(this.getDefaultState(), {passwordError: formatMessage(holders.passwordMatchError), serverError: ''});
this.setState(defaultState);
return;
}