Merge pull request #927 from matrix-org/luke/new-guest-access-not-new-password

Show "Password" instead of "New Password"
This commit is contained in:
Luke Barnard 2017-05-25 15:35:56 +01:00 committed by GitHub
commit 6218a8615a

View file

@ -193,12 +193,14 @@ module.exports = React.createClass({
switch (this.state.phase) {
case this.Phases.Edit:
const passwordLabel = this.state.cachedPassword ?
'Password' : 'New Password';
return (
<div className={this.props.className}>
{ currentPassword }
<div className={rowClassName}>
<div className={rowLabelClassName}>
<label htmlFor="password1">New password</label>
<label htmlFor="password1">{ passwordLabel }</label>
</div>
<div className={rowInputClassName}>
<input id="password1" type="password" ref="new_input" autoFocus={this.props.autoFocusNewPasswordInput} />