Merge pull request #8880 from Budibase/bug/sev2/external-datasource-id-filtering
Only exclude _id from external sql tables
This commit is contained in:
commit
29501d6f7b
|
@ -35,7 +35,7 @@ export function getFields(
|
||||||
field => field.type === "formula" && field.formulaType === "static"
|
field => field.type === "formula" && field.formulaType === "static"
|
||||||
)
|
)
|
||||||
const table = get(tables).list.find(table => table._id === tableId)
|
const table = get(tables).list.find(table => table._id === tableId)
|
||||||
if (table?.type === "external") {
|
if (table?.type === "external" && table?.sql) {
|
||||||
filteredFields = filteredFields.filter(field => field.name !== "_id")
|
filteredFields = filteredFields.filter(field => field.name !== "_id")
|
||||||
}
|
}
|
||||||
return filteredFields.concat(staticFormulaFields)
|
return filteredFields.concat(staticFormulaFields)
|
||||||
|
|
Loading…
Reference in New Issue