diff options
author | CodeDoctor <20452814+CodeDoctorDE@users.noreply.github.com> | 2022-08-09 13:30:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-09 19:30:09 +0800 |
commit | 36f9ee5813beba0fc4b394a5db636f76afc5cc38 (patch) | |
tree | ebbef5f327a727745230c1361ae6d10be7e69b89 /routers/web/user | |
parent | 33b03e851f1a99f8d7fb682fec4bcba4f20ff6a8 (diff) | |
download | gitea-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.go | 6 |
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 |