mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 01:10:49 +01:00
Fix broken Activities link in team dashboard (#17255)
Remove '/' suffix from organization dashboard link Fixes #17250
This commit is contained in:
parent
f0bd1e9896
commit
29acb3213b
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,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 + "/"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue