1
0
Fork 0
mirror of synced 2024-10-03 10:36:59 +13:00

Merge branch 'master' into BUDI-7573/use_existing_image_cache

This commit is contained in:
Adria Navarro 2023-10-04 18:08:31 +02:00 committed by GitHub
commit 6d387946a6
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