logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: 9f6be4fe654a26d57c67cbe0f42cd3bbb1b37e92
parent: 877a71fa4189c0976d64e2bbbc0634e01d677d85
Author: HJ <30-hj@users.noreply.git.pleroma.social>
Date:   Thu, 15 Aug 2019 17:19:49 +0000

Merge branch 'fix/fix-link-to-external-users-in-who-to-follow-page' into 'develop'

Fix/Fix links to external users in Who to follow page

See merge request pleroma/pleroma-fe!918

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 @@ -21,7 +21,8 @@ const WhoToFollow = { name: i.display_name, screen_name: i.acct, profile_image_url: i.avatar || '/images/avi.png', - profile_image_url_original: i.avatar || '/images/avi.png' + profile_image_url_original: i.avatar || '/images/avi.png', + statusnet_profile_url: i.url } this.users.push(user)