# HG changeset patch # User Mads Kiilerich # Date 2015-08-26 17:28:59 # Node ID 40e362a4ffc7adf80f7bd8b4c56b89a13847a9ee # Parent 43a4f3b285a66bd84a9138af7e4127238ad147cb pull requests: show 100 pull requests when showing pull requests for a repo 10 was too few. diff --git a/kallithea/controllers/pullrequests.py b/kallithea/controllers/pullrequests.py --- a/kallithea/controllers/pullrequests.py +++ b/kallithea/controllers/pullrequests.py @@ -198,7 +198,7 @@ class PullrequestsController(BaseRepoCon c.repo_name = repo_name p = safe_int(request.GET.get('page', 1), 1) - c.pullrequests_pager = Page(c.pull_requests, page=p, items_per_page=10) + c.pullrequests_pager = Page(c.pull_requests, page=p, items_per_page=100) if request.environ.get('HTTP_X_PARTIAL_XHR'): return render('/pullrequests/pullrequest_data.html')