Skip to content
Snippets Groups Projects
Unverified Commit f1c0d0b8 authored by Matiss Janis Aboltins's avatar Matiss Janis Aboltins Committed by GitHub
Browse files

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

parent d9adb750
No related branches found
No related tags found
No related merge requests found
...@@ -165,7 +165,8 @@ export function SelectedTransactionsButton({ ...@@ -165,7 +165,8 @@ export function SelectedTransactionsButton({
]); ]);
useHotkeys( useHotkeys(
's', 's',
() => (!types.trans || linked ? onViewSchedule() : onLinkSchedule()), () =>
!types.trans || linked ? onViewSchedule() : onLinkSchedule(selectedIds),
{ {
scopes: ['app'], scopes: ['app'],
}, },
......
---
category: Bugfix
authors: [MatissJanis]
---
Fix "s" hotkey breaking in transaction table.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment