🐛 Fixed browser default shortcut mapping fixes #374

This commit is contained in:
Liyas Thomas
2019-11-29 14:51:23 +05:30
parent f2262c0e19
commit a0191bafe7

View File

@@ -2030,7 +2030,7 @@ export default {
} else if (e.key === "k" && (e.ctrlKey || e.metaKey)) {
e.preventDefault();
this.copyRequest();
} else if (e.key === "l" && (e.ctrlKey || e.metaKey)) {
} else if (e.key === "j" && (e.ctrlKey || e.metaKey)) {
e.preventDefault();
this.$refs.clearAll.click();
}