Table: FilterMatchMode for boolean is CONTAINS, but should be EQUALS #14210
Labels
Status: Needs Triage
Issue will be reviewed by Core Team and a relevant label will be added as soon as possible
In this line,
FilterMatchMode.EQUALS
is only returned for"number"
, but not for"boolean"
.primeng/src/app/components/table/table.ts
Line 5375 in 3475737
For
"boolean"
it falls back to the default case ofFilterMatchMode.CONTAINS
which does not make sence for boolean types.For
"boolean"
theFilterMatchMode
should beFilterMatchMode.EQUALS
.The text was updated successfully, but these errors were encountered: