Always show my own followees/followers

This commit is contained in:
taehoon 2019-02-03 12:52:04 -05:00
parent 55fc31ea4d
commit ea1d7f46b5
4 changed files with 16 additions and 4 deletions

View file

@ -58,6 +58,12 @@ const UserProfile = {
},
isExternal () {
return this.$route.name === 'external-user-profile'
},
followeesTabVisible () {
return this.isUs || !this.user.hide_followings
},
followersTabVisible () {
return this.isUs || !this.user.hide_followers
}
},
methods: {