Skip to content

Commit

Permalink
Add option to disable reconciliation when importing CSV and files.
Browse files Browse the repository at this point in the history
  • Loading branch information
keriati committed Apr 11, 2024
1 parent 0f960df commit f04e1d6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1218,6 +1218,15 @@ export function ImportTransactions({ modalProps, options }) {
>
Clear transactions on import
</CheckboxOption>
<CheckboxOption
id="form_dont_reconcile"
checked={reconcile}
onChange={() => {
setReconcile(state => !state);
}}
>
Reconcile transactions
</CheckboxOption>
</View>
)}

Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/2585.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Features
authors: [keriati]
---

Add option to disable reconciliation when importing CSV files.

0 comments on commit f04e1d6

Please sign in to comment.