Fixed search query.

This commit is contained in:
Mike Cao 2025-01-03 15:32:17 -08:00
parent 089137ef8d
commit 5049c8b671
2 changed files with 2 additions and 2 deletions

View file

@ -122,7 +122,7 @@ function getSearchSQL(column: string, param: string = 'search'): string {
const db = getDatabaseType();
const like = db === POSTGRESQL ? 'ilike' : 'like';
return `and ${column} ${like} {{${param}}`;
return `and ${column} ${like} {{${param}}}`;
}
function mapFilter(column: string, operator: string, name: string, type: string = '') {