Fix password resetting

Fixes https://github.com/vector-im/vector-web/issues/1349
pull/21833/head
David Baker 2016-04-07 12:59:30 +01:00
parent b64604964d
commit a0c41e2d57
1 changed files with 2 additions and 2 deletions

View File

@ -38,8 +38,8 @@ module.exports = React.createClass({
getInitialState: function() {
return {
enteredHomeserverUrl: this.props.homeserverUrl,
enteredIdentityServerUrl: this.props.identityServerUrl,
enteredHomeserverUrl: this.props.customHsUrl || this.props.defaultHsUrl,
enteredIdentityServerUrl: this.props.customIsUrl || this.props.defaultIsUrl,
progress: null
};
},