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.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js
index 0783604d..3f34af36 100644
--- a/src/components/status/status.js
+++ b/src/components/status/status.js
@@ -9,7 +9,8 @@ const Status = {
props: [
'statusoid',
'expandable',
- 'inConversation'
+ 'inConversation',
+ 'focused'
],
data: () => ({
replying: false,
@@ -34,7 +35,8 @@ const Status = {
loggedIn () {
return !!this.$store.state.users.currentUser
},
- muted () { return !this.unmuted && this.status.user.muted }
+ muted () { return !this.unmuted && this.status.user.muted },
+ isReply () { return !!this.status.in_reply_to_status_id }
},
components: {
Attachment,