1
0
Fork 0
mirror of synced 2024-08-08 06:37:55 +12:00

Fix form block crash on no data tables (#11995)

* Fix form block crash on no data tables

* Refactor

* Refactor
This commit is contained in:
melohagan 2023-10-09 08:22:19 +01:00 committed by GitHub
parent d41f81bb45
commit d8f1b7960e
2 changed files with 6 additions and 3 deletions

View file

@ -948,12 +948,15 @@ export const buildFormSchema = (component, asset) => {
if (component._component.endsWith("formblock")) {
let schema = {}
const datasource = getDatasourceForProvider(asset, component)
const info = getSchemaForDatasource(component, datasource)
if (!info?.schema) {
return schema
}
if (!component.fields) {
Object.values(info?.schema)
Object.values(info.schema)
.filter(
({ autocolumn, name }) =>
!autocolumn && !["_rev", "_id"].includes(name)

View file

@ -37,7 +37,7 @@
}
$: datasource = getDatasourceForProvider($currentAsset, componentInstance)
$: resourceId = datasource.resourceId || datasource.tableId
$: resourceId = datasource?.resourceId || datasource?.tableId
$: if (!isEqual(value, cachedValue)) {
cachedValue = cloneDeep(value)