* fix(bug): #6291 * generated release note * [autofix.ci] apply automated fixes * Update VRT screenshots Auto-generated by VRT workflow PR: #6416 * Update VRT screenshots Auto-generated by VRT workflow PR: #6416 * Update VRT screenshots Auto-generated by VRT workflow PR: #6416 * merge * Update upcoming-release-notes/6416.md Co-authored-by: Matt Fiddaman <github@m.fiddaman.uk> --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: youngcw <calebyoung94@gmail.com> Co-authored-by: Matt Fiddaman <github@m.fiddaman.uk>
|
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 114 KiB After Width: | Height: | Size: 114 KiB |
|
Before Width: | Height: | Size: 114 KiB After Width: | Height: | Size: 114 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 72 KiB |
|
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 71 KiB |
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 69 KiB |
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 69 KiB |
|
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 68 KiB |
|
Before Width: | Height: | Size: 97 KiB After Width: | Height: | Size: 93 KiB |
|
Before Width: | Height: | Size: 97 KiB After Width: | Height: | Size: 94 KiB |
|
Before Width: | Height: | Size: 96 KiB After Width: | Height: | Size: 93 KiB |
@@ -299,6 +299,11 @@ export function KeyboardShortcutModal() {
|
||||
shortcut: 'M',
|
||||
description: t('Set amount for selected transactions'),
|
||||
},
|
||||
{
|
||||
id: 'set-date-for-selected-transactions',
|
||||
shortcut: 'E',
|
||||
description: t('Set date for selected transactions'),
|
||||
},
|
||||
{
|
||||
id: 'toggle-cleared-for-selected-transactions',
|
||||
shortcut: 'L',
|
||||
|
||||
@@ -240,7 +240,7 @@ export function SelectedTransactionsButton({
|
||||
onDelete,
|
||||
selectedIds,
|
||||
]);
|
||||
useHotkeys('t', () => onEdit('date', selectedIds), hotKeyOptions, [
|
||||
useHotkeys('e', () => onEdit('date', selectedIds), hotKeyOptions, [
|
||||
onEdit,
|
||||
selectedIds,
|
||||
]);
|
||||
@@ -393,7 +393,7 @@ export function SelectedTransactionsButton({
|
||||
: []),
|
||||
Menu.line,
|
||||
{ type: Menu.label, name: t('Edit field'), text: '' } as const,
|
||||
{ name: 'date', text: t('Date'), key: 'T' } as const,
|
||||
{ name: 'date', text: t('Date'), key: 'E' } as const,
|
||||
{ name: 'account', text: t('Account'), key: 'A' } as const,
|
||||
{ name: 'payee', text: t('Payee'), key: 'P' } as const,
|
||||
{ name: 'notes', text: t('Notes'), key: 'N' } as const,
|
||||
|
||||
6
upcoming-release-notes/6416.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Bugfix
|
||||
authors: [Tundesjaiyesmi]
|
||||
---
|
||||
|
||||
Fixed the issue of duplicate keyboard shortcuts for date and add transaction by changing the date hotkey to `E`
|
||||