[Status Page] Fix theme bug

pull/863/head
Louis Lam 2 years ago
parent 59cdacc052
commit 220e46bc83

@ -33,7 +33,7 @@ export default {
return "light";
}
if (this.path === "/status-page" || this.path === "/status") {
if (this.path.startsWith("/status-page") || this.path.startsWith("/status")) {
return this.statusPageTheme;
} else {
if (this.userTheme === "auto") {

@ -403,7 +403,7 @@ export default {
// Set Theme
"config.theme"() {
this.$root.userTheme = this.config.theme;
this.$root.statusPageTheme = this.config.theme;
this.loadedTheme = true;
},

Loading…
Cancel
Save