1
0
Fork 0
mirror of synced 2024-06-02 02:25:17 +12:00

Change form type setting to 'actionType' to avoid clashing with old settings

This commit is contained in:
Andrew Kingston 2021-06-09 12:55:17 +01:00
parent d47b871e9e
commit e027e34c69
2 changed files with 3 additions and 3 deletions

View file

@ -1026,7 +1026,7 @@
{
"type": "select",
"label": "Type",
"key": "type",
"key": "actionType",
"options": ["Create", "Update"],
"defaultValue": "Create"
},

View file

@ -8,7 +8,7 @@
export let theme
export let size
export let disabled = false
export let type = "Create"
export let actionType = "Create"
const component = getContext("component")
const context = getContext("context")
@ -42,7 +42,7 @@
}
// Use the closest data context as the initial form values
const initialValues = getInitialValues(type, dataSource, $context)
const initialValues = getInitialValues(actionType, dataSource, $context)
// Form state contains observable data about the form
const formState = writable({ values: initialValues, errors: {}, valid: true })