Bladeren bron

fix(Keyboard Shortcuts): modals now close properly when ESC key is pressed

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 4 jaren geleden
bovenliggende
commit
ab3b89556c
3 gewijzigde bestanden met toevoegingen van 2 en 5 verwijderingen
  1. 2 1
      frontend/src/App.vue
  2. 0 2
      frontend/src/pages/Admin/tabs/Playlists.vue
  3. 0 2
      frontend/src/pages/Admin/tabs/Users.vue

+ 2 - 1
frontend/src/App.vue

@@ -43,7 +43,7 @@ export default {
 		userId: state => state.user.auth.userId,
 		banned: state => state.user.auth.banned,
 		modals: state => state.modalVisibility.modals,
-		currentlyActive: state => state.modals.currentlyActive,
+		currentlyActive: state => state.modalVisibility.currentlyActive,
 		nightmode: state => state.user.preferences.nightmode
 	}),
 	watch: {
@@ -98,6 +98,7 @@ export default {
 			shift: false,
 			ctrl: false,
 			handler: () => {
+				console.log(this.currentlyActive);
 				if (Object.keys(this.currentlyActive).length !== 0)
 					this.closeCurrentModal();
 			}

+ 0 - 2
frontend/src/pages/Admin/tabs/Playlists.vue

@@ -80,8 +80,6 @@ export default {
 		})
 	},
 	mounted() {
-		console.log("mounted");
-
 		io.getSocket(socket => {
 			this.socket = socket;
 			if (this.socket.connected) this.init();

+ 0 - 2
frontend/src/pages/Admin/tabs/Users.vue

@@ -86,8 +86,6 @@ export default {
 		})
 	},
 	mounted() {
-		console.log("mounted");
-
 		io.getSocket(socket => {
 			this.socket = socket;
 			if (this.socket.connected) this.init();