7983-testToMaster_2438 #718

Merged
alexm merged 353 commits from 7983-testToMaster_2438 into master 2024-09-17 05:39:39 +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]);
}