Skip to content

Commit 3581f7e

Browse files
committed
On /categories, change the # per page to be 100
We only have 37 top-level categories now, so this will show all top-level categories on one page for the foreseeable future and make for a better browsing experience. Fixes #505.
1 parent 0288ef9 commit 3581f7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/controllers/categories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const { computed } = Ember;
66
export default Ember.Controller.extend(PaginationMixin, {
77
queryParams: ['page', 'per_page', 'sort'],
88
page: '1',
9-
per_page: 10,
9+
per_page: 100,
1010
sort: 'alpha',
1111

1212
totalItems: computed.readOnly('model.meta.total'),

0 commit comments

Comments
 (0)