fix: Changed to use HTML URL for contributor link

master
Ryan Carbotte 4 years ago committed by Ryan Carbotte
parent c2559fedbf
commit e20e884611

@ -5,7 +5,7 @@ function getContributors() {
.done(function (data) {
data.forEach((contributor, idx) => {
console.debug('DEBUG:', contributor);
container.append(`<a href="${contributor.url}">${contributor.login}</a>`);
container.append(`<a href="${contributor.html_url}">${contributor.login}</a>`);
if (idx < data.length - 1) {
container.append(', ');
}

Loading…
Cancel
Save