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

Commit

Permalink
pt 2
Browse files Browse the repository at this point in the history
  • Loading branch information
issyrocks12 committed Apr 18, 2017
1 parent 40fd9f2 commit cac65f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/admin/dist/extension.js
Expand Up @@ -290,7 +290,7 @@ System.register('Reflar/UserManagement/components/MemberPage', ['flarum/app', 'f
null,
app.translator.trans('reflar-usermanagement.admin.modal.amount_label')
),
m('input', { className: 'FormControl', type: 'number', value: this.amountPerPage(), oonchange: m.withAttr('value', this.amountPerPage) })
m('input', { className: 'FormControl', type: 'number', value: this.amountPerPage(), onchange: m.withAttr('value', this.amountPerPage) })
), Button.component({
className: 'Button Button--primary',
icon: 'plus',
Expand Down
2 changes: 1 addition & 1 deletion js/admin/src/components/MemberPage.js
Expand Up @@ -145,7 +145,7 @@ export default class MemberPage extends Page {
<label>
{app.translator.trans('reflar-usermanagement.admin.modal.amount_label')}
</label>
<input className="FormControl" type="number" value={this.amountPerPage()} oonchange={m.withAttr('value', this.amountPerPage)} />
<input className="FormControl" type="number" value={this.amountPerPage()} onchange={m.withAttr('value', this.amountPerPage)} />
</div>,
Button.component({
className: 'Button Button--primary',
Expand Down

0 comments on commit cac65f0

Please sign in to comment.