Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
f064834e87ad
Unverified
Commit
138f07ad
authored
Aug 16, 2017
by
Phil Hughes
Browse files
Fix commit list request appending 40 to offset
Closes #36569
parent
1f72515be1fa
Changes
2
Hide whitespace changes
Inline
Side-by-side
app/assets/javascripts/commits.js
View file @
f064834e
...
...
@@ -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
"
);
...
...
changelogs/unreleased/commits-list-page-limit.yml
0 → 100644
View file @
f064834e
---
title
:
Fix commit list not loading the correct page when scrolling
merge_request
:
author
:
type
:
fixed
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment