0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-11-03 13:05:22 +01:00

Fix #35763: Add proper page title for project pages

This commit is contained in:
Mithilesh Gupta 2025-10-30 08:50:07 +05:30
parent 3ab8ae5807
commit 43a30b60f8

View File

@ -436,6 +436,7 @@ func ViewProject(ctx *context.Context) {
ctx.Data["Project"] = project
ctx.Data["IssuesMap"] = issuesMap
ctx.Data["Columns"] = columns
ctx.Data["Title"] = fmt.Sprintf("%s - %s", project.Title, ctx.ContextUser.DisplayName())
if _, err := shared_user.RenderUserOrgHeader(ctx); err != nil {
ctx.ServerError("RenderUserOrgHeader", err)