Skip to content
3 changes: 3 additions & 0 deletions routers/web/repo/issue.go
Original file line number Diff line number Diff line change
Expand Up @@ -467,6 +467,9 @@ func issues(ctx *context.Context, milestoneID, projectID int64, isPullOption opt
ctx.Data["AssigneeID"] = assigneeID
ctx.Data["PosterID"] = posterID
ctx.Data["Keyword"] = keyword
if isShowClosed.Has() {
ctx.Data["IsShowClosed"] = isShowClosed.Value()
}
switch {
case isShowClosed.Value():
ctx.Data["State"] = "closed"
Expand Down
Loading