Merge branch 'develop' of git.pleroma.social:pleroma/pleroma-fe into hide-statistics

This commit is contained in:
scarlett 2018-10-16 14:09:29 +01:00
commit 4cc1ed6171
50 changed files with 2820 additions and 2257 deletions

View file

@ -2,7 +2,9 @@ const FavoriteButton = {
props: ['status', 'loggedIn'],
data () {
return {
hidePostStatsLocal: this.$store.state.config.hidePostStats,
hidePostStatsLocal: typeof this.$store.state.config.hidePostStats == 'undefined'
? this.$store.state.instance.hidePostStats
: this.$store.state.config.hidePostStats,
animated: false
}
},