diff options
Diffstat (limited to 'src/components/follow_list')
| -rw-r--r-- | src/components/follow_list/follow_list.js | 3 | ||||
| -rw-r--r-- | src/components/follow_list/follow_list.vue | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/components/follow_list/follow_list.js b/src/components/follow_list/follow_list.js index 6d00eb94..acdb216d 100644 --- a/src/components/follow_list/follow_list.js +++ b/src/components/follow_list/follow_list.js @@ -25,7 +25,8 @@ const FollowList = { }, entries () { return this.showFollowers ? this.user.followers : this.user.friends - } + }, + showActions () { return this.$store.state.users.currentUser.id === this.userId } }, methods: { fetchEntries () { diff --git a/src/components/follow_list/follow_list.vue b/src/components/follow_list/follow_list.vue index 24ab97d8..7be2e7b7 100644 --- a/src/components/follow_list/follow_list.vue +++ b/src/components/follow_list/follow_list.vue @@ -3,7 +3,8 @@ <user-card v-for="entry in entries" :key="entry.id" :user="entry" - :showFollows="true" + :showFollows="!showFollowers" + :showActions="showActions" /> <div class="text-center panel-footer"> <a v-if="error" @click="fetchEntries" class="alert error"> |
