Pass amount as string
This commit is contained in:
parent
480a95e096
commit
464931babe
@ -19,7 +19,7 @@ const payload = computed(() => JSON.stringify({
|
||||
},
|
||||
categoryId: Transaction.CategoryID,
|
||||
memo: Transaction.Memo,
|
||||
amount: Transaction.Amount,
|
||||
amount: Transaction.Amount.toString(),
|
||||
state: "Uncleared"
|
||||
}));
|
||||
|
||||
|
@ -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"
|
||||
}));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user