Fix typo in _rev schema field type
This commit is contained in:
parent
725d13cad3
commit
963f5e0ad8
|
@ -123,7 +123,7 @@ export const getContextBindings = (rootComponent, componentId) => {
|
||||||
// Add _id and _rev fields for certain types
|
// Add _id and _rev fields for certain types
|
||||||
if (datasource.type === "table" || datasource.type === "link") {
|
if (datasource.type === "table" || datasource.type === "link") {
|
||||||
schema["_id"] = { type: "string" }
|
schema["_id"] = { type: "string" }
|
||||||
schema["_rev"] = { type: "string " }
|
schema["_rev"] = { type: "string" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!schema || !tableName) {
|
if (!schema || !tableName) {
|
||||||
|
|
Loading…
Reference in New Issue