Add option to only hide attachments on timeline
This commit is contained in:
parent
049c74f8e8
commit
6bcbed38d0
5 changed files with 27 additions and 5 deletions
|
@ -17,7 +17,10 @@ const Status = {
|
|||
userExpanded: false
|
||||
}),
|
||||
computed: {
|
||||
hideAttachments () { return this.$store.state.config.hideAttachments },
|
||||
hideAttachments () {
|
||||
return (this.$store.state.config.hideAttachments && this.expandable) ||
|
||||
(this.$store.state.config.hideAttachmentsInConv && !this.expandable)
|
||||
},
|
||||
retweet () { return !!this.statusoid.retweeted_status },
|
||||
retweeter () { return this.statusoid.user.name },
|
||||
status () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue