Skip to content
Snippets Groups Projects

Hide Following/Followers tabs if user has them disabled

Merged Tae Hoon requested to merge tae/pleroma-fe:287-following-followers-tabs into develop
1 unresolved thread
Files
2
@@ -58,6 +58,12 @@ const UserProfile = {
},
isExternal () {
return this.$route.name === 'external-user-profile'
},
followeesTabVisible () {
return this.isUs || !this.user.hide_followings
Please register or sign in to reply
},
followersTabVisible () {
return this.isUs || !this.user.hide_followers
}
},
methods: {
Loading