Skip to content

Commit

Permalink
release: Show more than 10 comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
freezy committed Nov 17, 2019
1 parent 5da6031 commit da818b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/releases/details/release.details.ctrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export default class ReleaseDetailsCtrl {
}).filter(v => v), [ 'type' ], [ 'asc' ]);

// fetch comments
this.comments = this.ReleaseCommentResource.query({ releaseId: release.id });
this.comments = this.ReleaseCommentResource.query({ releaseId: release.id, per_page: 100 });
if (release.moderation) {
this.moderationComments = this.ReleaseModerationCommentResource.query({ releaseId: release.id });
}
Expand Down

0 comments on commit da818b4

Please sign in to comment.