Merge branch 'fix/favorites-timelines-fetching-on-direct-url' into 'develop'
Fix #286 favs timeline fetching when opening profile via direct url Closes #286 See merge request pleroma/pleroma-fe!495
This commit is contained in:
commit
43c26a4cd0
@ -36,7 +36,8 @@ const UserProfile = {
|
|||||||
return this.$route.params.name || this.user.screen_name
|
return this.$route.params.name || this.user.screen_name
|
||||||
},
|
},
|
||||||
isUs () {
|
isUs () {
|
||||||
return this.userId === this.$store.state.users.currentUser.id
|
return this.userId && this.$store.state.users.currentUser.id &&
|
||||||
|
this.userId === this.$store.state.users.currentUser.id
|
||||||
},
|
},
|
||||||
friends () {
|
friends () {
|
||||||
return this.user.friends
|
return this.user.friends
|
||||||
|
Loading…
Reference in New Issue
Block a user