Skip to content
This repository was archived by the owner on Oct 9, 2025. It is now read-only.

Commit f30127e

Browse files
authored
Fix incorrect not-equal
1 parent bfa4a31 commit f30127e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/Filters.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export function _in (columnName, filterArray) {
182182
* @example
183183
* _not('name', 'China')
184184
* //=>
185-
* 'name=not.China'
185+
* 'name=neq.China'
186186
*/
187187
export function _not(columnName, filterValue) {
188188
return `${columnName}=neq.${filterValue}`

0 commit comments

Comments
 (0)