1
0
Fork 0
mirror of synced 2024-10-01 17:47:46 +13:00

bugfix: events broken after views added to binding

This commit is contained in:
Michael Shanks 2020-09-11 16:33:37 +01:00
parent 6b524caf9f
commit d67b29d5d5

View file

@ -60,14 +60,12 @@
const component = $store.components[instance._component]
// component.context is the name of the prop that holds the modelId
const modelId = instance[component.context]
const modelInfo = instance[component.context]
if (!modelId) return []
if (!modelInfo) return []
const model = $backendUiStore.models.find(
m => m._id === instance[component.context]
)
parameters.modelId = modelId
const model = $backendUiStore.models.find(m => m._id === modelInfo.modelId)
parameters.modelId = modelInfo.modelId
return Object.keys(model.schema)
}