fix: bug#11076

This commit is contained in:
XieYongHong 2023-07-11 15:56:11 +08:00
parent 4f3099cc50
commit f832e842db
1 changed files with 1 additions and 1 deletions

View File

@ -756,7 +756,7 @@ const handleSearch = (e: any) => {
const newParams = (e?.terms as any[])?.map(item1 => {
item1.terms = item1.terms.map((item2: any) => {
if (['cardStateType'].includes(item2.column) && !(['using', 'toBeActivated', 'deactivate'].includes(item2.value))) { //
item2.termType = 'nin'
item2.termType = item2.termType === 'not' ? 'in' : 'nin'
}
return item2
})