Files
twenty/packages/twenty-front/src/modules/keyboard-shortcut-menu/constants/KeyboardShortcutsTable.ts
T
Félix Malfait 464a480043 Continue ESLINT9 Migration (#13795)
Might already fix #13793
2025-08-10 23:25:58 +02:00

23 lines
472 B
TypeScript

import { type Shortcut, ShortcutType } from '../types/Shortcut';
export const KEYBOARD_SHORTCUTS_TABLE: Shortcut[] = [
{
label: 'Move right',
type: ShortcutType.Table,
firstHotKey: '→',
areSimultaneous: true,
},
{
label: 'Move left',
type: ShortcutType.Table,
firstHotKey: '←',
areSimultaneous: true,
},
{
label: 'Clear selection',
type: ShortcutType.Table,
firstHotKey: 'esc',
areSimultaneous: true,
},
];