aboutsummaryrefslogtreecommitdiff
path: root/src/components/timeline/timeline_quick_settings.js
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2022-01-24 18:18:27 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2022-01-24 18:18:27 +0000
commit3cf7f9e3c827299c379c5618a6a972eb375fbb54 (patch)
tree157ad2f2d91a2c52c7a73825ffca84d0a5f3eb76 /src/components/timeline/timeline_quick_settings.js
parent182fcca5da9fa284f46f5ca1c8b1790353dec316 (diff)
parentf7e2ac1c482d163b429d56e95159ef009044724d (diff)
Merge branch 'settings-and-filtering' into 'develop'
Settings rearrange and filtering improvements See merge request pleroma/pleroma-fe!1394
Diffstat (limited to 'src/components/timeline/timeline_quick_settings.js')
-rw-r--r--src/components/timeline/timeline_quick_settings.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/timeline/timeline_quick_settings.js b/src/components/timeline/timeline_quick_settings.js
index eae65a55..7b4931ce 100644
--- a/src/components/timeline/timeline_quick_settings.js
+++ b/src/components/timeline/timeline_quick_settings.js
@@ -48,10 +48,9 @@ const TimelineQuickSettings = {
}
},
hideMutedPosts: {
- get () { return this.mergedConfig.hideMutedPosts || this.mergedConfig.hideFilteredStatuses },
+ get () { return this.mergedConfig.hideFilteredStatuses },
set () {
const value = !this.hideMutedPosts
- this.$store.dispatch('setOption', { name: 'hideMutedPosts', value })
this.$store.dispatch('setOption', { name: 'hideFilteredStatuses', value })
}
}