Skip to content
This repository was archived by the owner on Mar 25, 2019. It is now read-only.

Commit cac65f0

Browse files
author
issyrocks12
committed
pt 2
1 parent 40fd9f2 commit cac65f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

js/admin/dist/extension.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ System.register('Reflar/UserManagement/components/MemberPage', ['flarum/app', 'f
290290
null,
291291
app.translator.trans('reflar-usermanagement.admin.modal.amount_label')
292292
),
293-
m('input', { className: 'FormControl', type: 'number', value: this.amountPerPage(), oonchange: m.withAttr('value', this.amountPerPage) })
293+
m('input', { className: 'FormControl', type: 'number', value: this.amountPerPage(), onchange: m.withAttr('value', this.amountPerPage) })
294294
), Button.component({
295295
className: 'Button Button--primary',
296296
icon: 'plus',

js/admin/src/components/MemberPage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export default class MemberPage extends Page {
145145
<label>
146146
{app.translator.trans('reflar-usermanagement.admin.modal.amount_label')}
147147
</label>
148-
<input className="FormControl" type="number" value={this.amountPerPage()} oonchange={m.withAttr('value', this.amountPerPage)} />
148+
<input className="FormControl" type="number" value={this.amountPerPage()} onchange={m.withAttr('value', this.amountPerPage)} />
149149
</div>,
150150
Button.component({
151151
className: 'Button Button--primary',

0 commit comments

Comments
 (0)