forked from AkkomaGang/akkoma-fe
lint fix
This commit is contained in:
parent
2ebc06e30f
commit
f8e17cbdc5
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue