aboutsummaryrefslogtreecommitdiff
path: root/src/components/who_to_follow_panel
diff options
context:
space:
mode:
authortsukada-ecsec <tsukada@ecsec.org>2018-08-22 11:47:36 +0900
committertsukada-ecsec <tsukada@ecsec.org>2018-08-22 11:47:36 +0900
commit54166c3ad3bd3c9377d7788b84733c19d16732ad (patch)
treecf2787244d82bc9d60005c1f1807d2d71a1ae3e7 /src/components/who_to_follow_panel
parent41256045f2f11bdcb9874f08288a66a9c47aa28a (diff)
update settings
Diffstat (limited to 'src/components/who_to_follow_panel')
-rw-r--r--src/components/who_to_follow_panel/who_to_follow_panel.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/who_to_follow_panel/who_to_follow_panel.js b/src/components/who_to_follow_panel/who_to_follow_panel.js
index d7626dd4..70b35980 100644
--- a/src/components/who_to_follow_panel/who_to_follow_panel.js
+++ b/src/components/who_to_follow_panel/who_to_follow_panel.js
@@ -85,9 +85,9 @@ const WhoToFollowPanel = {
moreUrl: function () {
var host = window.location.hostname
var user = this.user
- var whoToFollowLink = this.$store.state.config.whoToFollowLink
+ var suggestionsWeb = this.$store.state.config.suggestionsWeb
var url
- url = whoToFollowLink.replace(/{{host}}/g, encodeURIComponent(host))
+ url = suggestionsWeb.replace(/{{host}}/g, encodeURIComponent(host))
url = url.replace(/{{user}}/g, encodeURIComponent(user))
return url
},