7953-devToTest_2438 #693

Merged
alexm merged 328 commits from 7953-devToTest_2438 into test 2024-09-10 08:31:29 +00:00
1 changed files with 0 additions and 6 deletions
Showing only changes of commit d3ab56184b - Show all commits

View File

@ -13,12 +13,6 @@ export default {
const handleKeyDown = (event) => {
const { ctrlKey, altKey, key } = event;
event.preventDefault();
const combination = `${ctrlKey ? 'Ctrl+' : ''}${
altKey ? 'Alt+' : ''
}${key.toLowerCase()}`;
console.log(ctrlKey, altKey, key, combination);
if (ctrlKey && altKey && keyBindingMap[key]) {
router.push(keyBindingMap[key]);
}