From 785695b7f58c6302189cf59a4c9550a728d7f825 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 30 Oct 2021 13:59:56 +0100 Subject: [PATCH] :zap: Updates method of getting initial theme --- src/components/Settings/ThemeSelector.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Settings/ThemeSelector.vue b/src/components/Settings/ThemeSelector.vue index 5c1b7501..10fb8db1 100644 --- a/src/components/Settings/ThemeSelector.vue +++ b/src/components/Settings/ThemeSelector.vue @@ -125,7 +125,7 @@ export default { getInitialTheme() { const localTheme = localStorage[localStorageKeys.THEME]; if (localTheme && localTheme !== 'undefined') return localTheme; - return this.confTheme || Defaults.theme; + return this.appConfig.theme || Defaults.theme; }, /* Determines if a given theme is local / not a custom user stylesheet */ isThemeLocal(themeToCheck) {