forked from AkkomaGang/akkoma-fe
Merge branch 'fix/respect-hide-post-stats' into 'develop'
Hide favs/rts properly when hide post stats is enabled See merge request pleroma/pleroma-fe!877
This commit is contained in:
commit
f734a72116
2 changed files with 6 additions and 1 deletions
|
@ -280,6 +280,11 @@ const Status = {
|
||||||
},
|
},
|
||||||
tags () {
|
tags () {
|
||||||
return this.status.tags.filter(tagObj => tagObj.hasOwnProperty('name')).map(tagObj => tagObj.name).join(' ')
|
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: {
|
components: {
|
||||||
|
|
|
@ -344,7 +344,7 @@
|
||||||
|
|
||||||
<transition name="fade">
|
<transition name="fade">
|
||||||
<div
|
<div
|
||||||
v-if="isFocused && combinedFavsAndRepeatsUsers.length > 0"
|
v-if="!hidePostStats && isFocused && combinedFavsAndRepeatsUsers.length > 0"
|
||||||
class="favs-repeated-users"
|
class="favs-repeated-users"
|
||||||
>
|
>
|
||||||
<div class="stats">
|
<div class="stats">
|
||||||
|
|
Loading…
Reference in a new issue