Profile image fallback

This commit is contained in:
zvizvi 2021-05-24 01:03:46 +03:00
parent 818c3bf24d
commit baf9154919
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ function updateDT(data) {
const forks = [];
for (let fork of data) {
fork.repoLink = `<a href="https://github.com/${fork.full_name}">Link</a>`;
fork.ownerName = `<img src="${fork.owner.avatar_url}&s=48" width="24" height="24" class="mr-2 rounded-circle" />${fork.owner ? fork.owner.login : '<strike><em>Unknown</em></strike>'}`;
fork.ownerName = `<img src="${fork.owner.avatar_url || 'https://avatars.githubusercontent.com/u/0?v=4'}&s=48" width="24" height="24" class="mr-2 rounded-circle" />${fork.owner ? fork.owner.login : '<strike><em>Unknown</em></strike>'}`;
forks.push(fork);
}
const dataSet = forks.map(fork =>