Don't hide replies when inConversation.

このコミットが含まれているのは:
scarlett 2018-08-24 21:46:45 +01:00
コミット da96294866
1個のファイルの変更1行の追加1行の削除

ファイルの表示

@ -123,7 +123,7 @@ const Status = {
if (this.$store.state.config.replyVisibility === 'all') {
return false
}
if (this.inlineExpanded || this.expanded || !this.isReply) {
if (this.inlineExpanded || this.expanded || this.inConversation || !this.isReply) {
return false
}
if (this.status.user.id === this.$store.state.users.currentUser.id) {