This commit is contained in:
2019-11-28 23:30:25 +00:00
parent 076bda2fe6
commit 281f597a5b

View File

@@ -330,10 +330,12 @@ export default {
roles: [] roles: []
}, },
obj: { obj: {
//IMPORTANT NOTE: Fields that are NON NULLABLE in the schema for the table but *are* hideable **MUST** have a default value set here or else there will be no way to save the record
//I.E. Serial field below
id: 0, id: 0,
concurrencyToken: 0, concurrencyToken: 0,
name: null, name: null,
serial: null, serial: 0,
dollarAmount: null, dollarAmount: null,
active: null, active: null,
roles: null, roles: null,