Merge pull request #532 from coralproject/fix-view-more

Fix: View More working with asset_id
This commit is contained in:
David Erwin
2017-04-25 16:01:38 -04:00
committed by GitHub
+1 -1
View File
@@ -7,9 +7,9 @@ const onLoadMoreClick = ({loadMore, commentCount, firstCommentDate, assetId, upd
e.preventDefault();
updateCountCache(assetId, commentCount);
loadMore({
asset_id: assetId,
limit: 500,
cursor: firstCommentDate,
assetId,
sort: 'CHRONOLOGICAL'
}, true);
};