From 345ea71eed69b3bd0d84d8581abeb8040e36e374 Mon Sep 17 00:00:00 2001 From: Attila Kerekes <439392+keriati@users.noreply.github.com> Date: Fri, 12 Apr 2024 16:54:55 +0200 Subject: [PATCH] Add option to disable reconciliation when importing CSV and files. (#2585) --- .../src/components/modals/ImportTransactions.jsx | 9 +++++++++ upcoming-release-notes/2585.md | 6 ++++++ 2 files changed, 15 insertions(+) create mode 100644 upcoming-release-notes/2585.md diff --git a/packages/desktop-client/src/components/modals/ImportTransactions.jsx b/packages/desktop-client/src/components/modals/ImportTransactions.jsx index b4b1b59474d..176a06e7182 100644 --- a/packages/desktop-client/src/components/modals/ImportTransactions.jsx +++ b/packages/desktop-client/src/components/modals/ImportTransactions.jsx @@ -1218,6 +1218,15 @@ export function ImportTransactions({ modalProps, options }) { > Clear transactions on import + { + setReconcile(state => !state); + }} + > + Reconcile transactions + )} diff --git a/upcoming-release-notes/2585.md b/upcoming-release-notes/2585.md new file mode 100644 index 00000000000..4a7256ecec1 --- /dev/null +++ b/upcoming-release-notes/2585.md @@ -0,0 +1,6 @@ +--- +category: Features +authors: [keriati] +--- + +Add checkbox to disable reconciliation when importing CSV files.