Add proper page title for project pages (#35773)

Fix #35763

Co-authored-by: Mithilesh Gupta <guptamithilesh@protonmail.com>
pull/35882/head^2
Mithilesh Gupta 2025-11-10 03:24:34 +07:00 committed by GitHub
parent c4c4cf5687
commit 60314cb688
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

@ -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)