diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/status/status.js | 2 | ||||
| -rw-r--r-- | 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 @@ <template> - <div class="status-el" v-if="hideStatus" :class="[{ 'status-el_focused': isFocused }, { 'status-conversation': inlineExpanded }]"> + <div class="status-el" v-if="!hideStatus" :class="[{ 'status-el_focused': isFocused }, { 'status-conversation': inlineExpanded }]"> <template v-if="muted && !noReplyLinks"> <div class="media status container muted"> <small> |
