1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma-fe synced 2025-05-28 04:59:14 +08:00

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 
This commit is contained in:
HJ 2019-06-04 08:04:47 +00:00
commit e9e7b36c69

View file

@ -20,7 +20,8 @@ const WhoToFollow = {
id: 0, id: 0,
name: i.display_name, name: i.display_name,
screen_name: i.acct, 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) this.users.push(user)