Skip to content

Commit

Permalink
🐛 fix 's' hotkey not working in transaction table (#3324)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatissJanis authored Aug 28, 2024
1 parent d9adb75 commit f1c0d0b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ export function SelectedTransactionsButton({
]);
useHotkeys(
's',
() => (!types.trans || linked ? onViewSchedule() : onLinkSchedule()),
() =>
!types.trans || linked ? onViewSchedule() : onLinkSchedule(selectedIds),
{
scopes: ['app'],
},
Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/3324.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [MatissJanis]
---

Fix "s" hotkey breaking in transaction table.

0 comments on commit f1c0d0b

Please sign in to comment.