Merge branch 'master' of github.com:Budibase/budibase into fix/internal-db-enrich-perf

This commit is contained in:
mike12345567 2023-10-05 23:05:18 +01:00
commit 10fffef467
2 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{
"version": "2.11.9",
"version": "2.11.10",
"npmClient": "yarn",
"packages": [
"packages/*"

View File

@ -13,7 +13,13 @@
let modal
$: tempValue = filters || []
$: schemaFields = Object.values(schema || {})
$: schemaFields = Object.entries(schema || {}).map(
([fieldName, fieldSchema]) => ({
name: fieldName, // Using the key as name if not defined in the schema, for example in some autogenerated columns
...fieldSchema,
})
)
$: text = getText(filters)
$: selected = tempValue.filter(x => !x.onEmptyFilter)?.length > 0