forked from AkkomaGang/akkoma-fe
unbreak user profiles
This commit is contained in:
parent
d64f4ab363
commit
f039b79e5a
1 changed files with 4 additions and 1 deletions
|
@ -12,7 +12,10 @@ export default {
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
headingStyle () {
|
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) {
|
if (color) {
|
||||||
const rgb = (typeof color === 'string') ? hex2rgb(color) : 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)`
|
const tintColor = `rgba(${Math.floor(rgb.r)}, ${Math.floor(rgb.g)}, ${Math.floor(rgb.b)}, .5)`
|
||||||
|
|
Loading…
Reference in a new issue