Don't hide replies when inConversation.
This commit is contained in:
parent
60b115320f
commit
da96294866
@ -123,7 +123,7 @@ const Status = {
|
|||||||
if (this.$store.state.config.replyVisibility === 'all') {
|
if (this.$store.state.config.replyVisibility === 'all') {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
if (this.inlineExpanded || this.expanded || !this.isReply) {
|
if (this.inlineExpanded || this.expanded || this.inConversation || !this.isReply) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
if (this.status.user.id === this.$store.state.users.currentUser.id) {
|
if (this.status.user.id === this.$store.state.users.currentUser.id) {
|
||||||
|
Loading…
Reference in New Issue
Block a user