1
0
Fork 0
mirror of synced 2024-07-03 13:30:46 +12:00

Fix typo in _rev schema field type

This commit is contained in:
Andrew Kingston 2021-02-04 15:48:32 +00:00
parent d1df8aca41
commit d939acbd4f

View file

@ -123,7 +123,7 @@ export const getContextBindings = (rootComponent, componentId) => {
// Add _id and _rev fields for certain types
if (datasource.type === "table" || datasource.type === "link") {
schema["_id"] = { type: "string" }
schema["_rev"] = { type: "string " }
schema["_rev"] = { type: "string" }
}
}
if (!schema || !tableName) {