Load higher quality gravatar (#957)

This commit is contained in:
Kyle Knight 2017-01-13 17:10:43 -06:00 committed by Jason Meller
parent 3113ae4651
commit 0c18b5161a
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ export const addGravatarUrlToResource = (resource) => {
const { email } = resource;
const emailHash = md5(email.toLowerCase());
const gravatarURL = `https://www.gravatar.com/avatar/${emailHash}?d=blank`;
const gravatarURL = `https://www.gravatar.com/avatar/${emailHash}?d=blank&size=200`;
return {
...resource,

View File

@ -30,10 +30,10 @@
line-height: 40px;
color: #fff;
text-align: center;
margin-top: -10px;
position: relative;
z-index: 1;
text-decoration: none;
margin-top: -10px;
}
}

View File

@ -11,7 +11,7 @@ export const validUser = {
admin: true,
enabled: true,
needs_password_reset: false,
gravatarURL: 'https://www.gravatar.com/avatar/7157f4758f8423b59aaee869d919f6b9?d=blank',
gravatarURL: 'https://www.gravatar.com/avatar/7157f4758f8423b59aaee869d919f6b9?d=blank&size=200',
};
export const validCreateLabelRequest = (bearerToken, labelParams) => {