Skip to content
Snippets Groups Projects

Who to follow panel

@@ -20,6 +20,9 @@ const WhoToFollowPanel = {
var url = 'https://vinayaka.distsn.org/?' +
encodeURIComponent(host) + '+' + encodeURIComponent(user)
return url
},
showWhoToFollowPanel () {
return this.$store.state.config.showWhoToFollowPanel
}
},
watch: {
@@ -92,7 +95,9 @@ const WhoToFollowPanel = {
})
}
}
getUsers(this)
if (this.showWhoToFollowPanel) {
getUsers(this)
}
}
},
mounted:
@@ -165,7 +170,9 @@ const WhoToFollowPanel = {
})
}
}
getUsers(this)
if (this.showWhoToFollowPanel) {
getUsers(this)
}
}
}
Loading