From 0947ae9ce96595f30b36e568ce8981a78e507ed4 Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 23 Aug 2021 18:24:55 +0200 Subject: [PATCH] Fix list settings not being available when list backgrounds are disabled --- src/components/list/list-settings-dropdown.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/list/list-settings-dropdown.vue b/src/components/list/list-settings-dropdown.vue index e292d30bf..fb9ae1042 100644 --- a/src/components/list/list-settings-dropdown.vue +++ b/src/components/list/list-settings-dropdown.vue @@ -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'