diff --git a/js/forum/dist/app.js b/js/forum/dist/app.js index 2f5679327..8fa967d76 100644 --- a/js/forum/dist/app.js +++ b/js/forum/dist/app.js @@ -24095,7 +24095,7 @@ System.register('flarum/components/LogInModal', ['flarum/components/Modal', 'fla { className: 'Form-group' }, m('input', { className: 'FormControl', name: 'email', type: 'text', placeholder: extractText(app.translator.trans('core.forum.log_in.username_or_email_placeholder')), value: this.email(), - onchange: m.withAttr('value', this.email), + oninput: m.withAttr('value', this.email), disabled: this.loading }) ), m( @@ -24103,7 +24103,7 @@ System.register('flarum/components/LogInModal', ['flarum/components/Modal', 'fla { className: 'Form-group' }, m('input', { className: 'FormControl', name: 'password', type: 'password', placeholder: extractText(app.translator.trans('core.forum.log_in.password_placeholder')), value: this.password(), - onchange: m.withAttr('value', this.password), + oninput: m.withAttr('value', this.password), disabled: this.loading }) ), m( diff --git a/js/forum/src/components/LogInModal.js b/js/forum/src/components/LogInModal.js index 8395061f8..09540d330 100644 --- a/js/forum/src/components/LogInModal.js +++ b/js/forum/src/components/LogInModal.js @@ -50,14 +50,14 @@ export default class LogInModal extends Modal {