Merge pull request #1094 from matrix-org/dbkr/enter_submits_changepassword

Make enter submit change password form
pull/21833/head
David Baker 2017-06-14 15:16:11 +01:00 committed by GitHub
commit 602255f92c
1 changed files with 2 additions and 2 deletions

View File

@ -223,7 +223,7 @@ module.exports = React.createClass({
const passwordLabel = this.state.cachedPassword ?
_t('Password') : _t('New Password');
return (
<div className={this.props.className}>
<form className={this.props.className} onSubmit={this.onClickChange}>
{ currentPassword }
<div className={rowClassName}>
<div className={rowLabelClassName}>
@ -246,7 +246,7 @@ module.exports = React.createClass({
element="button">
{ _t('Change Password') }
</AccessibleButton>
</div>
</form>
);
case this.Phases.Uploading:
var Loader = sdk.getComponent("elements.Spinner");