Update block search so that string fields do a 'starts with' search rather than an exact match

This commit is contained in:
Andrew Kingston 2021-11-10 11:48:02 +00:00
parent 610ba92bac
commit dd28adbf68
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,
})
}
})