diff --git a/frontend/src/components/misc/keyboard-shortcuts/shortcuts.ts b/frontend/src/components/misc/keyboard-shortcuts/shortcuts.ts index e6b4dad91..f5826d986 100644 --- a/frontend/src/components/misc/keyboard-shortcuts/shortcuts.ts +++ b/frontend/src/components/misc/keyboard-shortcuts/shortcuts.ts @@ -60,6 +60,24 @@ export const KEYBOARD_SHORTCUTS: ShortcutGroup[] = [ }, ], }, + { + title: 'keyboardShortcuts.list.title', + available: (route) => route.name === 'project.view', + shortcuts: [ + { + title: 'keyboardShortcuts.list.navigateDown', + keys: ['j'], + }, + { + title: 'keyboardShortcuts.list.navigateUp', + keys: ['k'], + }, + { + title: 'keyboardShortcuts.list.open', + keys: ['enter'], + }, + ], + }, { title: 'project.kanban.title', available: (route) => route.name === 'project.view', diff --git a/frontend/src/components/project/views/ProjectList.vue b/frontend/src/components/project/views/ProjectList.vue index 232a39535..80ce68e4d 100644 --- a/frontend/src/components/project/views/ProjectList.vue +++ b/frontend/src/components/project/views/ProjectList.vue @@ -65,8 +65,9 @@ @start="() => drag = true" @end="saveTaskPosition" > -