logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: e9e7b36c6931b886f750c7fc542989220f95116f
parent: 7ce9b7be079dfe46fa9a974fd7c54864156d57f8
Author: HJ <30-hj@users.noreply.git.pleroma.social>
Date:   Tue,  4 Jun 2019 08:04:47 +0000

Merge branch 'fix/avatars-in-who-to-follow-page-are-missing' into 'develop'

Fix/Small fix in the who to follow page

See merge request pleroma/pleroma-fe!820

Diffstat:

Msrc/components/who_to_follow/who_to_follow.js3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/components/who_to_follow/who_to_follow.js b/src/components/who_to_follow/who_to_follow.js @@ -20,7 +20,8 @@ const WhoToFollow = { id: 0, name: i.display_name, screen_name: i.acct, - profile_image_url: i.avatar || '/images/avi.png' + profile_image_url: i.avatar || '/images/avi.png', + profile_image_url_original: i.avatar || '/images/avi.png' } this.users.push(user)