Skip to content

Commit 86bfeb3

Browse files
committed
Fix commit graph author link (go-gitea#15627)
Backport go-gitea#15627 The author link on the commit graph is incorrect and isn't providing a link to the author. Signed-off-by: Andrew Thornton <[email protected]>
1 parent cae4621 commit 86bfeb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/repo/graph/commits.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
{{$userName = $commit.User.FullName}}
6969
{{end}}
7070
{{avatar $commit.User}}
71-
<a href="{{AppSubUrl}}/{{$commit.User}}">{{$userName}}</a>
71+
<a href="{{$commit.User.HomeLink}}">{{$userName}}</a>
7272
{{else}}
7373
{{avatarByEmail $commit.Commit.Author.Email $userName}}
7474
{{$userName}}

0 commit comments

Comments
 (0)