Skip to content

Commit 6c11b45

Browse files
committed
Update script.js
1 parent 2b509e7 commit 6c11b45

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Website/js/script.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ async function fetchSubdirectoryCounts() {
285285
fetchRepoStats();
286286
toggleStatsSection();
287287
});
288+
288289
document.addEventListener("DOMContentLoaded", function() {
289290
fetchContributors();
290291

@@ -305,7 +306,7 @@ document.addEventListener("DOMContentLoaded", function() {
305306
contributorDiv.innerHTML = `
306307
<img src="${contributor.avatar_url}" alt="${contributor.login}" class="contributor-image">
307308
<div class="contributor-info">
308-
<a href="${contributor.html_url}" target="_blank" class="contributor-github">GitHub Profile</a>
309+
<a href="${contributor.html_url}" target="_blank" class="contributor-name">${contributor.login}</a>
309310
</div>
310311
`;
311312

0 commit comments

Comments
 (0)