Skip to content

Commit

Permalink
Adding filter for reconciled transactions (#2108)
Browse files Browse the repository at this point in the history
* Adding filter for reconciled transactions

* Adding release note
  • Loading branch information
davidkus authored Jan 6, 2024
1 parent 7a40a64 commit 85c0352
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ const filterFields = [
'category',
'amount',
'cleared',
'reconciled',
'saved',
].map(field => [field, mapField(field)]);

Expand Down
1 change: 1 addition & 0 deletions packages/loot-core/src/shared/rules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export const FIELD_TYPES = new Map(
category: 'id',
account: 'id',
cleared: 'boolean',
reconciled: 'boolean',
saved: 'saved',
}),
);
Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/2108.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Enhancements
authors: [davidkus]
---

Adding filter for reconciled transactions.

0 comments on commit 85c0352

Please sign in to comment.