1
0
Fork 0
mirror of synced 2024-10-01 01:28:51 +13:00

Fixing an issue with search field select erroring in builder when using queries in blocks.

This commit is contained in:
mike12345567 2022-02-04 16:56:12 +00:00
parent f61e15594b
commit e74621f327

View file

@ -25,7 +25,7 @@
return base
}
const currentTable = $tables.list.find(table => table._id === ds.tableId)
return getFields(base, { allowLinks: currentTable.sql }).map(
return getFields(base, { allowLinks: currentTable?.sql }).map(
field => field.name
)
}