diff options
| author | Henry Jameson <me@hjkos.com> | 2018-11-26 21:22:44 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2018-11-27 05:01:18 +0300 |
| commit | f8e17cbdc58651b17a4f5639d3719a7e533b0d8b (patch) | |
| tree | 53a6e7cb390e1d57fba3b0e47caf7338d8fe5978 /src | |
| parent | 2ebc06e30f009204eb289057730f9fa4a148d499 (diff) | |
lint fix
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/user_card_content/user_card_content.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/user_card_content/user_card_content.js b/src/components/user_card_content/user_card_content.js index e7ca21c7..254d1666 100644 --- a/src/components/user_card_content/user_card_content.js +++ b/src/components/user_card_content/user_card_content.js @@ -12,9 +12,9 @@ export default { }, computed: { headingStyle () { - const color = this.$store.state.config.customTheme.colors ? - this.$store.state.config.customTheme.colors.bg : // v2 - this.$store.state.config.colors.bg // v1 + const color = this.$store.state.config.customTheme.colors + ? this.$store.state.config.customTheme.colors.bg // v2 + : this.$store.state.config.colors.bg // v1 if (color) { const rgb = (typeof color === 'string') ? hex2rgb(color) : color |
