Skip to content
Snippets Groups Projects
Unverified Commit e5481259 authored by Martin French's avatar Martin French Committed by GitHub
Browse files

[Bugfix] Fix update transaction API bug (#2127)

parent edbcaba8
No related branches found
No related tags found
No related merge requests found
......@@ -443,7 +443,7 @@ handlers['api/transaction-update'] = withMutation(async function ({
return [];
}
const { diff } = updateTransaction(transactions, fields);
const { diff } = updateTransaction(transactions, { id, ...fields });
return handlers['transactions-batch-update'](diff);
});
......
---
category: Bugfix
authors: [mk-french]
---
Fix update transaction API bug
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