소스 검색

Fixed issue with close button on login page not working.

KrisVos130 8 년 전
부모
커밋
053a6aa2d8
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      frontend/components/Modals/Login.vue

+ 5 - 1
frontend/components/Modals/Login.vue

@@ -36,7 +36,11 @@
 	export default {
 		methods: {
 			toggleModal: function () {
-				this.$dispatch('toggleModal', 'login');
+				if (this.$router._currentRoute.path === '/login') {
+					location.href = '/';
+				} else {
+					this.$dispatch('toggleModal', 'login');
+				}
 			},
 			submitModal: function () {
 				this.$dispatch('login');