Skip to content

Commit 020cebd

Browse files
committed
fix: use LIKE instead of ILIKE
1 parent d588ec4 commit 020cebd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/convert-filter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const convertFilter = (filter) => {
3333
...(memo[Op.and] || []),
3434
{
3535
[property.name()]: {
36-
[(Op.iLike as unknown) as string]: `%${escape(value)}%`,
36+
[(Op.like as unknown) as string]: `%${escape(value)}%`,
3737
},
3838
},
3939
],

0 commit comments

Comments
 (0)