Fix blocks not filtering properly on number fields

This commit is contained in:
Andrew Kingston 2021-12-09 19:36:53 +00:00
parent e7899d7f22
commit cd0acacb69
2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@
enrichedFilter.push({ enrichedFilter.push({
field: column.name, field: column.name,
operator: column.type === "string" ? "string" : "equal", operator: column.type === "string" ? "string" : "equal",
type: "string", type: column.type === "string" ? "string" : "number",
valueType: "Binding", valueType: "Binding",
value: `{{ [${formId}].[${column.name}] }}`, value: `{{ [${formId}].[${column.name}] }}`,
}) })

View File

@ -61,7 +61,7 @@
enrichedFilter.push({ enrichedFilter.push({
field: column.name, field: column.name,
operator: column.type === "string" ? "string" : "equal", operator: column.type === "string" ? "string" : "equal",
type: "string", type: column.type === "string" ? "string" : "number",
valueType: "Binding", valueType: "Binding",
value: `{{ ${safe(formId)}.${safe(column.name)} }}`, value: `{{ ${safe(formId)}.${safe(column.name)} }}`,
}) })