unbreak user profiles

This commit is contained in:
Henry Jameson 2018-11-26 20:25:14 +03:00
parent d64f4ab363
commit f039b79e5a
1 changed files with 4 additions and 1 deletions

View File

@ -12,7 +12,10 @@ export default {
},
computed: {
headingStyle () {
const color = this.$store.state.config.customTheme.colors.bg
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
const tintColor = `rgba(${Math.floor(rgb.r)}, ${Math.floor(rgb.g)}, ${Math.floor(rgb.b)}, .5)`