From 2c2b84d31dbe906b89dfb995394d887af110e04c Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Fri, 5 Jul 2019 10:02:14 +0300 Subject: npm eslint --fix . --- src/components/who_to_follow/who_to_follow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/components/who_to_follow/who_to_follow.js') diff --git a/src/components/who_to_follow/who_to_follow.js b/src/components/who_to_follow/who_to_follow.js index 7ae602a2..f8100257 100644 --- a/src/components/who_to_follow/who_to_follow.js +++ b/src/components/who_to_follow/who_to_follow.js @@ -37,7 +37,7 @@ const WhoToFollow = { getWhoToFollow () { const credentials = this.$store.state.users.currentUser.credentials if (credentials) { - apiService.suggestions({credentials: credentials}) + apiService.suggestions({ credentials: credentials }) .then((reply) => { this.showWhoToFollow(reply) }) -- cgit v1.2.3-70-g09d2 From dd340bb9e3c1a45aa9897cec5dc0432537d3c7d7 Mon Sep 17 00:00:00 2001 From: Hakaba Hitoyo Date: Thu, 15 Aug 2019 17:19:49 +0000 Subject: Fix/Fix links to external users in Who to follow page --- src/components/who_to_follow/who_to_follow.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/components/who_to_follow/who_to_follow.js') diff --git a/src/components/who_to_follow/who_to_follow.js b/src/components/who_to_follow/who_to_follow.js index f8100257..8fab6c4d 100644 --- 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) -- cgit v1.2.3-70-g09d2