summaryrefslogtreecommitdiffstats
path: root/routers/web/user
diff options
context:
space:
mode:
authorCodeDoctor <20452814+CodeDoctorDE@users.noreply.github.com>2022-08-09 13:30:09 +0200
committerGitHub <noreply@github.com>2022-08-09 19:30:09 +0800
commit36f9ee5813beba0fc4b394a5db636f76afc5cc38 (patch)
treeebbef5f327a727745230c1361ae6d10be7e69b89 /routers/web/user
parent33b03e851f1a99f8d7fb682fec4bcba4f20ff6a8 (diff)
downloadgitea-36f9ee5813beba0fc4b394a5db636f76afc5cc38.tar.gz
gitea-36f9ee5813beba0fc4b394a5db636f76afc5cc38.zip
Add an option to create new issues from "/issues" page (#20650)
Diffstat (limited to 'routers/web/user')
-rw-r--r--routers/web/user/home.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/routers/web/user/home.go b/routers/web/user/home.go
index 6482699804..f338c525b4 100644
--- a/routers/web/user/home.go
+++ b/routers/web/user/home.go
@@ -618,6 +618,12 @@ func buildIssueOverview(ctx *context.Context, unitType unit.Type) {
shownIssues += int(issueCountByRepo[repoID])
}
}
+ if len(repoIDs) == 1 {
+ repo := showReposMap[repoIDs[0]]
+ if repo != nil {
+ ctx.Data["SingleRepoLink"] = repo.Link()
+ }
+ }
ctx.Data["IsShowClosed"] = isShowClosed