diff --git a/frontend/src/components/misc/keyboard-shortcuts/shortcuts.ts b/frontend/src/components/misc/keyboard-shortcuts/shortcuts.ts index d41b13679..e6b4dad91 100644 --- a/frontend/src/components/misc/keyboard-shortcuts/shortcuts.ts +++ b/frontend/src/components/misc/keyboard-shortcuts/shortcuts.ts @@ -16,7 +16,7 @@ export interface ShortcutGroup { shortcuts: Shortcut[] } -export const KEYBOARD_SHORTCUTS : ShortcutGroup[] = [ +export const KEYBOARD_SHORTCUTS: ShortcutGroup[] = [ { title: 'keyboardShortcuts.general', shortcuts: [ @@ -152,6 +152,10 @@ export const KEYBOARD_SHORTCUTS : ShortcutGroup[] = [ title: 'keyboardShortcuts.task.favorite', keys: ['s'], }, + { + title: 'keyboardShortcuts.task.openProject', + keys: ['u'], + }, { title: 'keyboardShortcuts.task.save', keys: [ctrl, 's'], diff --git a/frontend/src/i18n/lang/en.json b/frontend/src/i18n/lang/en.json index 1c2805868..c464786a3 100644 --- a/frontend/src/i18n/lang/en.json +++ b/frontend/src/i18n/lang/en.json @@ -1057,6 +1057,7 @@ "delete": "Delete this task", "priority": "Change the priority of this task", "favorite": "Mark this task as favorite / unfavorite", + "openProject": "Open the project of this task", "save": "Save the current task" }, "project": { diff --git a/frontend/src/views/tasks/TaskDetailView.vue b/frontend/src/views/tasks/TaskDetailView.vue index 535369cab..b319c8d11 100644 --- a/frontend/src/views/tasks/TaskDetailView.vue +++ b/frontend/src/views/tasks/TaskDetailView.vue @@ -29,12 +29,14 @@ > {{ getProjectTitle(p) }} - {{ getProjectTitle(p) }}