Merge pull request #14228 from Budibase/remove-selected-rows-datasource

Don't show datasource options for array bindings that lack table IDs
This commit is contained in:
Andrew Kingston 2024-07-25 11:20:55 +01:00 committed by GitHub
commit 91bc48b633
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -115,6 +115,7 @@
})
$: fields = bindings
.filter(x => arrayTypes.includes(x.fieldSchema?.type))
.filter(x => x.fieldSchema?.tableId != null)
.map(binding => {
const { providerId, readableBinding, runtimeBinding } = binding
const { name, type, tableId } = binding.fieldSchema