浏览代码

fix: Night mode toggle not working properly on first click

Owen Diffey 3 年之前
父节点
当前提交
1e0df7e6ce
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      frontend/src/components/layout/MainFooter.vue

+ 1 - 0
frontend/src/components/layout/MainFooter.vue

@@ -98,6 +98,7 @@ export default {
 	},
 	async mounted() {
 		this.localNightmode = JSON.parse(localStorage.getItem("nightmode"));
+		if (this.localNightmode === null) this.localNightmode = false;
 
 		this.frontendDomain = await lofig.get("frontendDomain");
 		this.siteSettings = await lofig.get("siteSettings");