Skip to content
Snippets Groups Projects

Hide favs/rts properly when hide post stats is enabled

Merged Shpuld Shpludson requested to merge fix/respect-hide-post-stats into develop
2 files
+ 6
1
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -280,6 +280,11 @@ const Status = {
},
tags () {
return this.status.tags.filter(tagObj => tagObj.hasOwnProperty('name')).map(tagObj => tagObj.name).join(' ')
},
hidePostStats () {
return typeof this.$store.state.config.hidePostStats === 'undefined'
? this.$store.state.instance.hidePostStats
: this.$store.state.config.hidePostStats
}
},
components: {
Loading