mirror of
https://codeberg.org/forgejo/forgejo
synced 2024-11-24 10:46:10 +01:00
Backport #20070 Just get all tags when creating the compare dropdown. Fix #19936
This commit is contained in:
parent
710a1419fa
commit
29ac31628c
|
@ -98,7 +98,14 @@ func releasesOrTags(ctx *context.Context, isTagList bool) {
|
||||||
listOptions.PageSize = setting.API.MaxResponseItems
|
listOptions.PageSize = setting.API.MaxResponseItems
|
||||||
}
|
}
|
||||||
|
|
||||||
tags, err := ctx.Repo.GitRepo.GetTags(listOptions.GetStartEnd())
|
// TODO(20073) tags are used for compare feature witch needs all tags
|
||||||
|
// filtering is doen at the client side atm
|
||||||
|
tagListStart, tagListEnd := 0, 0
|
||||||
|
if isTagList {
|
||||||
|
tagListStart, tagListEnd = listOptions.GetStartEnd()
|
||||||
|
}
|
||||||
|
|
||||||
|
tags, err := ctx.Repo.GitRepo.GetTags(tagListStart, tagListEnd)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.ServerError("GetTags", err)
|
ctx.ServerError("GetTags", err)
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue