Remove suffix and prefix from login input username

This is an attempt reduce confusion when entering a custom home server: https://github.com/vector-im/riot-web/issues/3736
This commit is contained in:
Luke Barnard 2017-05-19 10:03:51 +01:00
parent 90ee0c7ad9
commit 2bec44a517
2 changed files with 10 additions and 35 deletions

View file

@ -19,7 +19,6 @@ limitations under the License.
import React from 'react';
import ReactDOM from 'react-dom';
import url from 'url';
import sdk from '../../../index';
import Login from '../../../Login';
@ -242,12 +241,6 @@ module.exports = React.createClass({
switch (step) {
case 'm.login.password':
const PasswordLogin = sdk.getComponent('login.PasswordLogin');
// HSs that are not matrix.org may not be configured to have their
// domain name === domain part.
let hsDomain = url.parse(this.state.enteredHomeserverUrl).hostname;
if (hsDomain !== 'matrix.org') {
hsDomain = null;
}
return (
<PasswordLogin
onSubmit={this.onPasswordLogin}
@ -259,7 +252,6 @@ module.exports = React.createClass({
onPhoneNumberChanged={this.onPhoneNumberChanged}
onForgotPasswordClick={this.props.onForgotPasswordClick}
loginIncorrect={this.state.loginIncorrect}
hsDomain={hsDomain}
/>
);
case 'm.login.cas':