Don't hide replies when inConversation.

merge-requests/332/head
scarlett 6 years ago
parent 60b115320f
commit da96294866

@ -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) {

Loading…
Cancel
Save