Highlight original notice when expanding retweets

このコミットが含まれているのは:
wakarimasen 2017-03-06 16:21:11 +01:00
コミット 9d56721533
2個のファイルの変更6行の追加2行の削除

ファイルの表示

@ -49,7 +49,11 @@ const conversation = {
}
},
focused: function (id) {
return (id === this.statusoid.id)
if (!!this.statusoid.retweeted_status) {
return (id === this.statusoid.retweeted_status.id)
} else {
return (id === this.statusoid.id)
}
}
}
}

ファイルの表示

@ -32,7 +32,7 @@ const Status = {
return !!this.$store.state.users.currentUser
},
muted () { return !this.unmuted && this.status.user.muted },
isReply () { return !!this.statusoid.in_reply_to_status_id }
isReply () { return !!this.status.in_reply_to_status_id }
},
components: {
Attachment,