Update some components.

This commit is contained in:
James Cole
2021-01-30 12:24:55 +01:00
parent 02cd0600ea
commit d4c9f53b10
4 changed files with 188 additions and 14 deletions

View File

@@ -69,6 +69,7 @@ const state = () => ({
foreign_currency_id: 0,
// meta data
category: null,
budget_id: 0,
bill_id: 0,
piggy_bank_id: 0,
@@ -85,11 +86,17 @@ const state = () => ({
// optional other fields:
internal_reference: null,
external_url: null,
external_id: null,
notes: null,
// transaction links:
links: [],
attachments: []
attachments: [],
// error handling
errors: {
description: []
},
},
}
)