forked from AkkomaGang/akkoma-fe
review
This commit is contained in:
parent
61c9ecd855
commit
416424d048
1 changed files with 1 additions and 3 deletions
|
@ -79,8 +79,6 @@ const Status = {
|
||||||
replyProfileLink () {
|
replyProfileLink () {
|
||||||
if (this.isReply) {
|
if (this.isReply) {
|
||||||
return this.generateUserProfileLink(this.status.in_reply_to_status_id, this.replyToName)
|
return this.generateUserProfileLink(this.status.in_reply_to_status_id, this.replyToName)
|
||||||
} else {
|
|
||||||
return ''
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
retweet () { return !!this.statusoid.retweeted_status },
|
retweet () { return !!this.statusoid.retweeted_status },
|
||||||
|
@ -134,7 +132,7 @@ const Status = {
|
||||||
if (user) {
|
if (user) {
|
||||||
return user.screen_name
|
return user.screen_name
|
||||||
} else {
|
} else {
|
||||||
return this.status.in_reply_to_screen_name || ''
|
return this.status.in_reply_to_screen_name
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
hideReply () {
|
hideReply () {
|
||||||
|
|
Loading…
Reference in a new issue