summaryrefslogtreecommitdiffstats
path: root/routers/web/user/home.go
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 13:30:09 +0200
commit36f9ee5813beba0fc4b394a5db636f76afc5cc38 (patch)
treeebbef5f327a727745230c1361ae6d10be7e69b89 /routers/web/user/home.go
parentRestore history button and hide add button when unable to add (#20718) (diff)
downloadforgejo-36f9ee5813beba0fc4b394a5db636f76afc5cc38.tar.xz
forgejo-36f9ee5813beba0fc4b394a5db636f76afc5cc38.zip
Add an option to create new issues from "/issues" page (#20650)
Diffstat (limited to 'routers/web/user/home.go')
-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