Update block search so that string fields do a 'starts with' search rather than an exact match
This commit is contained in:
parent
610ba92bac
commit
dd28adbf68
|
@ -49,7 +49,7 @@
|
||||||
columns?.forEach(column => {
|
columns?.forEach(column => {
|
||||||
enrichedFilter.push({
|
enrichedFilter.push({
|
||||||
field: column.name,
|
field: column.name,
|
||||||
operator: "equal",
|
operator: column.type === "string" ? "string" : "equal",
|
||||||
type: "string",
|
type: "string",
|
||||||
valueType: "Binding",
|
valueType: "Binding",
|
||||||
value: `{{ [${formId}].[${column.name}] }}`,
|
value: `{{ [${formId}].[${column.name}] }}`,
|
||||||
|
@ -68,6 +68,7 @@
|
||||||
enrichedColumns.push({
|
enrichedColumns.push({
|
||||||
name: column,
|
name: column,
|
||||||
componentType,
|
componentType,
|
||||||
|
type: schemaType,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
@ -48,7 +48,7 @@
|
||||||
columns?.forEach(column => {
|
columns?.forEach(column => {
|
||||||
enrichedFilter.push({
|
enrichedFilter.push({
|
||||||
field: column.name,
|
field: column.name,
|
||||||
operator: "equal",
|
operator: column.type === "string" ? "string" : "equal",
|
||||||
type: "string",
|
type: "string",
|
||||||
valueType: "Binding",
|
valueType: "Binding",
|
||||||
value: `{{ [${formId}].[${column.name}] }}`,
|
value: `{{ [${formId}].[${column.name}] }}`,
|
||||||
|
@ -67,6 +67,7 @@
|
||||||
enrichedColumns.push({
|
enrichedColumns.push({
|
||||||
name: column,
|
name: column,
|
||||||
componentType,
|
componentType,
|
||||||
|
type: schemaType,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue