diff options
| author | Hakaba Hitoyo <hakabahitoyo@yahoo.co.jp> | 2019-06-04 08:04:47 +0000 |
|---|---|---|
| committer | HJ <30-hj@users.noreply.git.pleroma.social> | 2019-06-04 08:04:47 +0000 |
| commit | 809d872b2d23b5939c333333b796ce61b8b4c7ea (patch) | |
| tree | 68101eb933807a4a219cbf7e25ffe12288363f39 | |
| parent | 7ce9b7be079dfe46fa9a974fd7c54864156d57f8 (diff) | |
Fix/Small fix in the who to follow page
| -rw-r--r-- | src/components/who_to_follow/who_to_follow.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/who_to_follow/who_to_follow.js b/src/components/who_to_follow/who_to_follow.js index be0b8827..7ae602a2 100644 --- 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) |
