Changed shortcut to delte from `x` to `Shift+Delete`

This commit is contained in:
primeapple 2023-05-09 21:04:35 +02:00
parent 9dfaabc0b3
commit 30b7d0f3ed
2 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ export const KEYBOARD_SHORTCUTS : ShortcutGroup[] = [
},
{
title: 'keyboardShortcuts.task.delete',
keys: ['x'],
keys: ['shift', 'delete'],
},
{
title: 'keyboardShortcuts.task.favorite',

View File

@ -418,7 +418,7 @@
icon="trash-alt"
:shadow="false"
class="is-danger is-outlined has-no-border"
v-shortcut="'x'"
v-shortcut="'Shift+Delete'"
>
{{ $t('task.detail.actions.delete') }}
</x-button>