Commit 0d959713 authored by Tim Zallmann's avatar Tim Zallmann Committed by Jose Ivan Vargas

Merge branch 'commits-list-page-limit' into 'master'

Fix commit list request appending 40 to offset

Closes #36569 and #36563

See merge request !13603
parent 3cb4352b
......@@ -17,7 +17,7 @@ window.CommitsList = (function() {
}
});
Pager.init(limit, false, false, this.processCommits);
Pager.init(parseInt(limit, 10), false, false, this.processCommits);
this.content = $("#commits-list");
this.searchField = $("#commits-search");
......
---
title: Fix commit list not loading the correct page when scrolling
merge_request:
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment