removed useless code, review change, fixed bug with tall statuses

This commit is contained in:
Henry Jameson 2021-08-15 02:41:53 +03:00
parent 4465de5241
commit 530ac4442b
4 changed files with 45 additions and 51 deletions

View file

@ -45,7 +45,7 @@ const MentionLink = {
},
isYou () {
// FIXME why user !== currentUser???
return this.user && this.user.screen_name === this.currentUser.screen_name
return this.user && this.user.id === this.currentUser.id
},
userName () {
return this.user && this.userNameFullUi.split('@')[0]