Skip to content

Commit

Permalink
fixes #1686, unable to edit user password
Browse files Browse the repository at this point in the history
  • Loading branch information
luceos committed Jan 16, 2019
1 parent 1b2d4f1 commit c67fb2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/forum/components/EditUserModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default class EditUserModal extends Modal {
<label>{app.translator.trans('core.forum.edit_user.password_heading')}</label>
<div>
<label className="checkbox">
<input type="checkbox" checked={this.setPassword()} onChange={e => {
<input type="checkbox" value={this.setPassword()} onchange={e => {
this.setPassword(e.target.checked);
m.redraw(true);
if (e.target.checked) this.$('[name=password]').select();
Expand Down

1 comment on commit c67fb2d

@PeopleInside
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This fix seems to not resolve the issue

Please sign in to comment.