aboutsummaryrefslogtreecommitdiff
path: root/src/components/status/status.js
diff options
context:
space:
mode:
authorlambadalambda <gitgud@rogerbraun.net>2017-03-09 07:43:59 -0500
committerlambadalambda <gitgud@rogerbraun.net>2017-03-09 07:43:59 -0500
commit0ce747d2c3fb20affb03a0ce102caeb15b84032a (patch)
tree4dd7ea8c2755ddc1190bbdc20228382ec3871bcc /src/components/status/status.js
parent64d71b75cfed41d82a99e3e478fc75d5f81f84bd (diff)
parent00531ad9df97e2e8c08f565f33d4e1df6e7b7770 (diff)
Merge branch 'feature/borders-pleasing-to-the-eye' into 'develop'
Feature/borders pleasing to the eye See merge request !56
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 bc9d6e6c..6faebf61 100644
--- a/src/components/status/status.js
+++ b/src/components/status/status.js
@@ -32,7 +32,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,