aboutsummaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
authorGiteabot <teabot@gitea.io>2024-09-24 09:26:10 +0800
committerGitHub <noreply@github.com>2024-09-24 01:26:10 +0000
commitd5d5fb19253e5cf85ae82063eb544c6d6874c2fe (patch)
tree96e293615c2e6559d9b0023179dd362c4c2077a0 /routers
parentae37f31df6619eaa398af1e327c2844e089ed3ad (diff)
downloadgitea-d5d5fb19253e5cf85ae82063eb544c6d6874c2fe.tar.gz
gitea-d5d5fb19253e5cf85ae82063eb544c6d6874c2fe.zip
Fix Bug in Issue/pulls list (#32081) (#32115)
Diffstat (limited to 'routers')
-rw-r--r--routers/web/repo/issue.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/routers/web/repo/issue.go b/routers/web/repo/issue.go
index 849fc83fb0..47333396c7 100644
--- a/routers/web/repo/issue.go
+++ b/routers/web/repo/issue.go
@@ -461,6 +461,7 @@ func issues(ctx *context.Context, milestoneID, projectID int64, isPullOption opt
ctx.Data["AssigneeID"] = assigneeID
ctx.Data["PosterID"] = posterID
ctx.Data["Keyword"] = keyword
+ ctx.Data["IsShowClosed"] = isShowClosed
switch {
case isShowClosed.Value():
ctx.Data["State"] = "closed"