aboutsummaryrefslogtreecommitdiff
path: root/src/components/status/status.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/status/status.js')
-rw-r--r--src/components/status/status.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js
index cca5f7fc..0783604d 100644
--- a/src/components/status/status.js
+++ b/src/components/status/status.js
@@ -8,7 +8,8 @@ import UserCardContent from '../user_card_content/user_card_content.vue'
const Status = {
props: [
'statusoid',
- 'expandable'
+ 'expandable',
+ 'inConversation'
],
data: () => ({
replying: false,
@@ -18,8 +19,8 @@ const Status = {
}),
computed: {
hideAttachments () {
- return (this.$store.state.config.hideAttachments && this.expandable) ||
- (this.$store.state.config.hideAttachmentsInConv && !this.expandable)
+ return (this.$store.state.config.hideAttachments && !this.inConversation) ||
+ (this.$store.state.config.hideAttachmentsInConv && this.inConversation)
},
retweet () { return !!this.statusoid.retweeted_status },
retweeter () { return this.statusoid.user.name },