Fix: Submit account ID when creating transaction
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
3149595df6
commit
0b525f72ec
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ export default {
|
||||||
saveTransaction() {
|
saveTransaction() {
|
||||||
const body = JSON.stringify({
|
const body = JSON.stringify({
|
||||||
...this.form,
|
...this.form,
|
||||||
account: this.accountId,
|
account: this.account.id,
|
||||||
category: this.form.category || null,
|
category: this.form.category || null,
|
||||||
time: new Date(this.form.date),
|
time: new Date(this.form.date),
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue