1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +12:00

Merge pull request #3311 from Budibase/block-search-improvements

Improve block searching
This commit is contained in:
Andrew Kingston 2021-11-10 12:08:10 +00:00 committed by GitHub
commit b72270c401
2 changed files with 4 additions and 2 deletions

View file

@ -49,7 +49,7 @@
columns?.forEach(column => {
enrichedFilter.push({
field: column.name,
operator: "equal",
operator: column.type === "string" ? "string" : "equal",
type: "string",
valueType: "Binding",
value: `{{ [${formId}].[${column.name}] }}`,
@ -68,6 +68,7 @@
enrichedColumns.push({
name: column,
componentType,
type: schemaType,
})
}
})

View file

@ -48,7 +48,7 @@
columns?.forEach(column => {
enrichedFilter.push({
field: column.name,
operator: "equal",
operator: column.type === "string" ? "string" : "equal",
type: "string",
valueType: "Binding",
value: `{{ [${formId}].[${column.name}] }}`,
@ -67,6 +67,7 @@
enrichedColumns.push({
name: column,
componentType,
type: schemaType,
})
}
})