소스 검색

fix(MainHeader): changeNightmode not a function

Owen Diffey 3 년 전
부모
커밋
f04d00cc4a
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      frontend/src/components/layout/MainHeader.vue

+ 2 - 1
frontend/src/components/layout/MainHeader.vue

@@ -168,7 +168,8 @@ export default {
 			this.windowWidth = window.innerWidth;
 		},
 		...mapActions("modalVisibility", ["openModal"]),
-		...mapActions("user/auth", ["logout"])
+		...mapActions("user/auth", ["logout"]),
+		...mapActions("user/preferences", ["changeNightmode"])
 	}
 };
 </script>