component templates: store binding renamed to state
This commit is contained in:
parent
d0f3eeca1b
commit
eed864b770
|
@ -65,7 +65,7 @@ const dataCells = (index, indexSchema) =>
|
|||
}))
|
||||
|
||||
const dataItem = index => `${index.name}_item`
|
||||
const dataCollection = index => `store.${index.name}`
|
||||
const dataCollection = index => `state.${index.name}`
|
||||
const rowCode = index =>
|
||||
`
|
||||
if (!${dataCollection(index)}) return
|
||||
|
|
|
@ -44,7 +44,7 @@ const checkbox = (record, f) => ({
|
|||
checked: fieldValueBinding(record, f),
|
||||
})
|
||||
|
||||
const fieldValueBinding = (record, f) => `store.${record.name}.${f.name}`
|
||||
const fieldValueBinding = (record, f) => `state.${record.name}.${f.name}`
|
||||
|
||||
const capitalize = s => s.charAt(0).toUpperCase() + s.slice(1)
|
||||
|
||||
|
|
Loading…
Reference in New Issue