From aa1e0ef687698bf2de777f0a06c304627be94968 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Thu, 7 May 2015 16:53:30 +0930 Subject: [PATCH] Fix user activity load more --- js/forum/src/components/activity-page.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/forum/src/components/activity-page.js b/js/forum/src/components/activity-page.js index 20cf759c4..e1a40d5f1 100644 --- a/js/forum/src/components/activity-page.js +++ b/js/forum/src/components/activity-page.js @@ -44,10 +44,10 @@ export default class ActivityPage extends UserPage { this.loadResults().then(this.parseResults.bind(this)); } - loadResults(start) { + loadResults(offset) { return app.store.find('activity', { users: this.user().id(), - start, + page: {offset}, type: this.props.filter }) }