Skip to content

Commit a316d32

Browse files
committed
Fix incorrect links to GitHub pages
The popup for GitHub profiles on the author page displayed outdated links leading to 404 errors. The affected links have been updated to point to the new page addresses. Resolves #3189.
1 parent 7028400 commit a316d32

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

root/static/js/github.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,9 @@ class GitHubUrl {
147147

148148
+
149149
' <tr><th>Member Since:</th><td><span class="relatize">' + data.created_at + '</span></td></tr>' +
150-
' <tr><th><a href="' + data.html_url + '/followers">Followers</a>:</th><td>' + data.followers + '</td></tr>' +
151-
' <tr><th><a href="' + data.html_url + '/following">Following</a>:</th><td>' + data.following + '</td></tr>' +
152-
' <tr><th><a href="' + data.html_url + '/repositories">Public Repos</a>:</th><td>' + data.public_repos + '</td></tr>' +
150+
' <tr><th><a href="' + data.html_url + '?tab=followers">Followers</a>:</th><td>' + data.followers + '</td></tr>' +
151+
' <tr><th><a href="' + data.html_url + '?tab=following">Following</a>:</th><td>' + data.following + '</td></tr>' +
152+
' <tr><th><a href="' + data.html_url + '?tab=repositories">Public Repos</a>:</th><td>' + data.public_repos + '</td></tr>' +
153153
'</table>';
154154
},
155155
url: function(result) {

0 commit comments

Comments
 (0)