0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-12-22 10:14:05 +01:00
This commit is contained in:
Lunny Xiao 2016-12-23 08:26:01 +08:00 committed by Thomas Boerger
parent b33078fa33
commit a12da66dfb

View file

@ -250,6 +250,9 @@ func Issues(ctx *context.Context) {
}
}
ctx.Data["Repos"] = showRepos
if len(repoIDs) == 0 {
repoIDs = []int64{-1}
}
issueStats := models.GetUserIssueStats(repoID, ctxUser.ID, repoIDs, filterMode, isPullList)
issueStats.AllCount = int64(allCount)