When using the excel filter. If you select a single item ("In Review") and then hit 'Enter' (instead of ok). The query that is generated is incorrect. It creates a query of "on" instead of the expected
Generated when pressing "Enter"
{
"requiresCounts":true,
"where":[
{
"isComplex":true,
"ignoreAccent":false,
"condition":"and",
"predicates":[
{
"isComplex":false,
"field":"Status",
"operator":"contains",
"value":"on",
"ignoreCase":true,
"ignoreAccent":false
}
]
}
],
"skip":0,
"take":25
}
Expected (same as clicking "Ok")
{
"requiresCounts":true,
"where":[
{
"isComplex":true,
"ignoreAccent":false,
"condition":"and",
"predicates":[
{
"isComplex":false,
"field":"Status",
"operator":"equal",
"value":"In Review",
"ignoreCase":true,
"ignoreAccent":true
}
]
}
],
"skip":0,
"take":25
}