Hide favs/rts properly when hide post stats is enabled
This commit is contained in:
parent
6b4fe1c2d9
commit
59ade4084e
2 changed files with 6 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue