Skip to content
Snippets Groups Projects
Commit da962948 authored by scarlett's avatar scarlett
Browse files

Don't hide replies when inConversation.

parent 60b11532
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment