aboutsummaryrefslogtreecommitdiff
path: root/src/components/status/status.js
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2017-03-09 09:00:09 +0100
committerRoger Braun <roger@rogerbraun.net>2017-03-09 09:00:09 +0100
commitb11c1f57a95e689a751c4dff72ebe7aabc9c0601 (patch)
treeb2596b07c3482c76493cc61974932cdf33e296ab /src/components/status/status.js
parent502757da28d573641a48197c284b7e40dfc8154e (diff)
parentba4f7ef3efe15aaebce523113283b5854d16ceb8 (diff)
Merge branch 'develop' into xj9/pleroma-fe-feature/even-better-nsfw-image-loading
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 22292ffa..bc9d6e6c 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',
+ 'focused'
],
data: () => ({
replying: false,
@@ -30,7 +31,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,