Fix crash when schema doesnt exist for a datasource

This commit is contained in:
Andrew Kingston 2021-02-26 09:55:38 +00:00
parent 88fa3d18ea
commit 091054df5d
1 changed files with 1 additions and 1 deletions

View File

@ -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" }
} }