Skip to content
Snippets Groups Projects
Commit baebf08d authored by Tae Hoon's avatar Tae Hoon
Browse files

do not collapse thread muted posts in conversation

parent 6a3f2832
No related branches found
No related tags found
No related merge requests found
Pipeline #17148 passed
......@@ -118,7 +118,7 @@ const Status = {
return hits
},
muted () { return !this.unmuted && ((!this.inProfile && this.status.user.muted) || this.status.thread_muted || this.muteWordHits.length > 0) },
muted () { return !this.unmuted && ((!this.inProfile && this.status.user.muted) || (!this.inConversation && this.status.thread_muted) || this.muteWordHits.length > 0) },
hideFilteredStatuses () {
return typeof this.$store.state.config.hideFilteredStatuses === 'undefined'
? this.$store.state.instance.hideFilteredStatuses
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment