aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShpuld Shpludson <shp@cock.li>2017-11-09 08:23:19 +0000
committerShpuld Shpludson <shp@cock.li>2017-11-09 08:23:19 +0000
commit56a0665b2f39185e56a469c78e4183aedca0403f (patch)
treee0011988bde83b9cdee1508e18e1c70b3bce4992 /src
parent991360108033229ae16272a09cc7061b579e1523 (diff)
parentbe943445e90be8ac834064e3e125036789f68f9b (diff)
Merge branch 'fix/pleromabe-is-other-user' into 'develop'
Fix isOtherUser on pleroma-be See merge request pleroma/pleroma-fe!137
Diffstat (limited to 'src')
-rw-r--r--src/components/user_card_content/user_card_content.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/user_card_content/user_card_content.vue b/src/components/user_card_content/user_card_content.vue
index 8aef7e8a..cba6296c 100644
--- a/src/components/user_card_content/user_card_content.vue
+++ b/src/components/user_card_content/user_card_content.vue
@@ -104,7 +104,7 @@
}
},
isOtherUser () {
- return this.user !== this.$store.state.users.currentUser
+ return this.user.id !== this.$store.state.users.currentUser.id
},
loggedIn () {
return this.$store.state.users.currentUser