소스 검색

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");