mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 07:09:21 +01:00
Fix pagination limit parameter problem (#21111)
backport #21109 Co-authored-by: 6543 <6543@obermui.de>
This commit is contained in:
parent
31842f12a4
commit
2dcea782c5
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ func Commits(ctx *context.Context) {
|
|||
ctx.Data["CommitCount"] = commitsCount
|
||||
ctx.Data["RefName"] = ctx.Repo.RefName
|
||||
|
||||
pager := context.NewPagination(int(commitsCount), setting.Git.CommitsRangeSize, page, 5)
|
||||
pager := context.NewPagination(int(commitsCount), pageSize, page, 5)
|
||||
pager.SetDefaultParams(ctx)
|
||||
ctx.Data["Page"] = pager
|
||||
|
||||
|
|
Loading…
Reference in a new issue