Skip to content
Snippets Groups Projects
Unverified Commit 345ea71e authored by Attila Kerekes's avatar Attila Kerekes Committed by GitHub
Browse files

Add option to disable reconciliation when importing CSV and files. (#2585)

parent d89a016a
No related branches found
No related tags found
No related merge requests found
...@@ -1218,6 +1218,15 @@ export function ImportTransactions({ modalProps, options }) { ...@@ -1218,6 +1218,15 @@ export function ImportTransactions({ modalProps, options }) {
> >
Clear transactions on import Clear transactions on import
</CheckboxOption> </CheckboxOption>
<CheckboxOption
id="form_dont_reconcile"
checked={reconcile}
onChange={() => {
setReconcile(state => !state);
}}
>
Reconcile transactions
</CheckboxOption>
</View> </View>
)} )}
......
---
category: Features
authors: [keriati]
---
Add checkbox to disable reconciliation when importing CSV files.
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