diff --git a/bin/contributors.js b/bin/contributors.js index 149c1c5..c7fe8a7 100644 --- a/bin/contributors.js +++ b/bin/contributors.js @@ -28,7 +28,7 @@ const getUserFromCommit = ((commitCache) => async (sha) => { return commitCache[sha] = { ...data.commit.author, ...data.author, - avatar_url_sm: data.author.avatar_url ? data.author.avatar_url + '&s=16' : '', + avatar_url_sm: data.author.avatar_url ? data.author.avatar_url + '&s=18' : '', }; } catch (err) { return commitCache[sha] = null; diff --git a/templates/contributors.hbs b/templates/contributors.hbs index c95fc5c..53fb6a3 100644 --- a/templates/contributors.hbs +++ b/templates/contributors.hbs @@ -4,7 +4,7 @@ {{#each authors}} {{#unless isBot}} {{#if login}} - - {{#if avatar_url}}![avatar]({{avatar_url_sm}}){{/if}} [{{displayName}}]({{html_url}} "+{{insertions}}/-{{deletions}} ({{#each prs}}#{{this}} {{/each}})") + - {{#if avatar_url}}avatar{{/if}} [{{displayName}}]({{html_url}} "+{{insertions}}/-{{deletions}} ({{#each prs}}#{{this}} {{/each}})") {{else}} - {{displayName}} {{/if}} diff --git a/test/specs/__helpers.js b/test/specs/__helpers.js index 08ef95b..c2d14c5 100644 --- a/test/specs/__helpers.js +++ b/test/specs/__helpers.js @@ -3,8 +3,8 @@ import _axios from '../../index.js'; window.axios = _axios; // Jasmine config -jasmine.DEFAULT_TIMEOUT_INTERVAL = 20000; -jasmine.getEnv().defaultTimeoutInterval = 20000; +jasmine.DEFAULT_TIMEOUT_INTERVAL = 60000; +jasmine.getEnv().defaultTimeoutInterval = 60000; // Get Ajax request using an increasing timeout to retry window.getAjaxRequest = (function () {