aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshpuld <shpuld@gmail.com>2017-02-26 22:42:22 +0200
committershpuld <shpuld@gmail.com>2017-02-26 22:42:22 +0200
commit8c43b3f505c6bee344a85dc33a927f123062a268 (patch)
tree7c4fa438814f8fb4cc5597a1081512278341e931
parent960ed9540d443e0d577d7aefe1918b74343f4e0e (diff)
Remove newlines from template literal.
-rw-r--r--src/components/user_card_content/user_card_content.vue4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/components/user_card_content/user_card_content.vue b/src/components/user_card_content/user_card_content.vue
index 4dc1c6f1..6b01133c 100644
--- a/src/components/user_card_content/user_card_content.vue
+++ b/src/components/user_card_content/user_card_content.vue
@@ -63,9 +63,7 @@
headingStyle () {
let rgb = this.$store.state.config.colors['base00'].match(/\d+/g)
return {
- backgroundColor: `rgb(${Math.floor(rgb[0] * 0.53)},
- ${Math.floor(rgb[1] * 0.56)},
- ${Math.floor(rgb[2] * 0.59)})`,
+ backgroundColor: `rgb(${Math.floor(rgb[0] * 0.53)}, ${Math.floor(rgb[1] * 0.56)}, ${Math.floor(rgb[2] * 0.59)})`,
backgroundImage: `url(${this.user.cover_photo})`
}
},