aboutsummaryrefslogtreecommitdiff
path: root/src/components/status/status.js
diff options
context:
space:
mode:
authorwakarimasen <wakarimasen@airmail.cc>2017-03-10 12:29:21 +0100
committerwakarimasen <wakarimasen@airmail.cc>2017-03-10 12:38:47 +0100
commit896de016adbabd142c09476a323f4e02cefa88c9 (patch)
treea2cec29e4afab22aeec5e7ed41b25a19263402d3 /src/components/status/status.js
parent2f52669380703030aa8e197deb05240c5f3bf979 (diff)
parentbfbbb527677ba4648b1be376bb02b0bd3c3e29ba (diff)
Merge branch 'develop' of https://gitgud.io/lambadalambda/pleroma-fe into wakarimasen/pleroma-fe-develop
Diffstat (limited to 'src/components/status/status.js')
-rw-r--r--src/components/status/status.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js
index 3f34af36..87fff879 100644
--- a/src/components/status/status.js
+++ b/src/components/status/status.js
@@ -36,7 +36,12 @@ const Status = {
return !!this.$store.state.users.currentUser
},
muted () { return !this.unmuted && this.status.user.muted },
- isReply () { return !!this.status.in_reply_to_status_id }
+ isReply () { return !!this.status.in_reply_to_status_id },
+ borderColor () {
+ return {
+ borderBottomColor: this.$store.state.config.colors['base02']
+ }
+ }
},
components: {
Attachment,