From 077f231fef751aae5177167b3f9d649a1e9afeb9 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 --- framework/core/js/forum/src/components/activity-page.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/core/js/forum/src/components/activity-page.js b/framework/core/js/forum/src/components/activity-page.js index 20cf759c4..e1a40d5f1 100644 --- a/framework/core/js/forum/src/components/activity-page.js +++ b/framework/core/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 }) }