From 7818d6786b8489ddc18a5cd0d63e894450ec5ead Mon Sep 17 00:00:00 2001 From: jasper Date: Fri, 8 Feb 2019 05:17:20 -0800 Subject: [PATCH] Add option to hide filtered statuses --- src/components/status/status.js | 2 +- src/components/status/status.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/status/status.js b/src/components/status/status.js index 4a1fcfdf..8181b0db 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -116,7 +116,7 @@ const Status = { : this.$store.state.config.hideFilteredStatuses }, hideStatus () { - return (!this.hideReply && !this.deleted) && !(this.muted && this.hideFilteredStatuses) + return (this.hideReply || this.deleted) || (this.muted && this.hideFilteredStatuses) }, isFocused () { // retweet or root of an expanded conversation diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 83d7b25a..13e6ccec 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -1,5 +1,5 @@