🐛 fix 's' hotkey not working in transaction table (#3324)

This commit is contained in:
Matiss Janis Aboltins
2024-08-28 20:21:24 +01:00
committed by GitHub
parent d9adb750d4
commit f1c0d0b8a6
2 changed files with 8 additions and 1 deletions

View File

@@ -165,7 +165,8 @@ export function SelectedTransactionsButton({
]);
useHotkeys(
's',
() => (!types.trans || linked ? onViewSchedule() : onLinkSchedule()),
() =>
!types.trans || linked ? onViewSchedule() : onLinkSchedule(selectedIds),
{
scopes: ['app'],
},

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [MatissJanis]
---
Fix "s" hotkey breaking in transaction table.