Fix list settings not being available when list backgrounds are disabled
This commit is contained in:
parent
9f392c275e
commit
0947ae9ce9
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ export default {
|
|||
},
|
||||
computed: {
|
||||
backgroundsEnabled() {
|
||||
return this.$store.state.config.enabledBackgroundProviders.length > 0
|
||||
return this.$store.state.config.enabledBackgroundProviders !== null && this.$store.state.config.enabledBackgroundProviders.length > 0
|
||||
},
|
||||
listRoutePrefix() {
|
||||
let name = 'list'
|
||||
|
|
Loading…
Reference in a new issue