Add option to hide filtered statuses
This commit is contained in:
parent
6a867f6ae3
commit
a57f8bdd68
7 changed files with 27 additions and 5 deletions
src/components/status
|
@ -110,6 +110,11 @@ const Status = {
|
|||
return hits
|
||||
},
|
||||
muted () { return !this.unmuted && (this.status.user.muted || this.muteWordHits.length > 0) },
|
||||
hideFilteredStatuses () {
|
||||
return typeof this.$store.state.config.hideFilteredStatuses === 'undefined'
|
||||
? this.$store.state.instance.hideFilteredStatuses
|
||||
: this.$store.state.config.hideFilteredStatuses
|
||||
},
|
||||
isFocused () {
|
||||
// retweet or root of an expanded conversation
|
||||
if (this.focused) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue