Skip to content
Snippets Groups Projects
Unverified Commit 6220aadb authored by Matt Fiddaman's avatar Matt Fiddaman Committed by GitHub
Browse files

Fix CSV import not matching category is (nothing) rules (#2790)

* Fix CSV import not matching category is (nothing) rules

* release note
parent 2959054d
No related branches found
No related tags found
No related merge requests found
......@@ -941,9 +941,7 @@ export function ImportTransactions({ modalProps, options }) {
}
const category_id = parseCategoryFields(trans, categories.list);
if (category_id != null) {
trans.category = category_id;
}
trans.category = category_id;
const { inflow, outflow, inOut, ...finalTransaction } = trans;
finalTransactions.push({
......
---
category: Bugfix
authors: [matt-fidd]
---
Fix CSV import not matching category is (nothing) rules
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