Fix filtering no datetime fields in blocks
This commit is contained in:
parent
aec1f90412
commit
d5ef915f39
|
@ -75,7 +75,7 @@
|
|||
enrichedFilter.push({
|
||||
field: column.name,
|
||||
operator: column.type === "string" ? "string" : "equal",
|
||||
type: column.type === "string" ? "string" : "number",
|
||||
type: column.type,
|
||||
valueType: "Binding",
|
||||
value: `{{ ${safe(formId)}.${safePath} }}`,
|
||||
})
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
enrichedFilter.push({
|
||||
field: column.name,
|
||||
operator: column.type === "string" ? "string" : "equal",
|
||||
type: column.type === "string" ? "string" : "number",
|
||||
type: column.type,
|
||||
valueType: "Binding",
|
||||
value: `{{ ${safe(formId)}.${safePath} }}`,
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue