Implement editing of transactions #23

Merged
jacob1123 merged 22 commits from edit-transaction into master 2022-02-25 23:35:12 +01:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 464931babe - Show all commits

View File

@ -19,7 +19,7 @@ const payload = computed(() => JSON.stringify({
},
categoryId: Transaction.CategoryID,
memo: Transaction.Memo,
amount: Transaction.Amount,
amount: Transaction.Amount.toString(),
state: "Uncleared"
}));

View File

@ -33,7 +33,7 @@ const payload = computed(() => JSON.stringify({
},
categoryId: TX.value.CategoryID,
memo: TX.value.Memo,
amount: TX.value.Amount,
amount: TX.value.Amount.toString(),
state: "Uncleared"
}));