Fix crash when schema doesnt exist for a datasource
This commit is contained in:
parent
88fa3d18ea
commit
091054df5d
|
@ -120,7 +120,7 @@ const getContextBindings = (asset, componentId) => {
|
||||||
tableName = info.table?.name
|
tableName = info.table?.name
|
||||||
|
|
||||||
// Add _id and _rev fields for certain types
|
// Add _id and _rev fields for certain types
|
||||||
if (datasource.type === "table" || datasource.type === "link") {
|
if (schema && ["table", "link"].includes(datasource.type)) {
|
||||||
schema["_id"] = { type: "string" }
|
schema["_id"] = { type: "string" }
|
||||||
schema["_rev"] = { type: "string" }
|
schema["_rev"] = { type: "string" }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue