1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-19 16:58:37 +00:00

Fix broken Activities link in team dashboard (#17255) (#17258)

Remove '/' suffix from organization dashboard link

Fixes #17250
This commit is contained in:
Jimmy Praet
2021-10-07 20:58:59 +02:00
committed by GitHub
parent 7b1153e943
commit 6e0a08d753

View File

@@ -296,7 +296,7 @@ func (u *User) CanImportLocal() bool {
// DashboardLink returns the user dashboard page link.
func (u *User) DashboardLink() string {
if u.IsOrganization() {
return u.OrganisationLink() + "/dashboard/"
return u.OrganisationLink() + "/dashboard"
}
return setting.AppSubURL + "/"
}