Skip to content
This repository has been archived by the owner on Feb 3, 2023. It is now read-only.

Commit

Permalink
fix: correctly set payee name when importing
Browse files Browse the repository at this point in the history
  • Loading branch information
heilerich committed Mar 13, 2021
1 parent eea1824 commit 3e0da90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "actualmoney",
"productName": "ActualMoney",
"version": "1.0.0",
"version": "1.0.1",
"description": "Synchronises bank statements from MoneyMoney.app to Actual.app",
"main": "src/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/importer.js
Expand Up @@ -116,7 +116,7 @@ const app = new Vue({
date: record.Date.format('YYYY-MM-DD'),
amount: parseFloat(record.Amount) * 100,
imported_payee: record.Name,
payee: record.Name,
payee_name: record.Name,
notes: record.Purpose,
imported_id: record.ID
}
Expand Down

0 comments on commit 3e0da90

Please sign in to comment.