Merge pull request #8880 from Budibase/bug/sev2/external-datasource-id-filtering

Only exclude _id from external sql tables
This commit is contained in:
melohagan 2022-11-30 16:09:14 +00:00 committed by GitHub
commit 29501d6f7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ export function getFields(
field => field.type === "formula" && field.formulaType === "static"
)
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")
}
return filteredFields.concat(staticFormulaFields)