mirror of
https://git.youjo.love/youjo/youjo-fe.git
synced 2025-01-31 08:29:08 +01: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 pleroma/pleroma-fe!820
This commit is contained in:
commit
e9e7b36c69
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue