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

@ -1,6 +1,6 @@
{
"name": "umami",
"version": "2.15.1",
"version": "2.16.0",
"description": "A simple, fast, privacy-focused alternative to Google Analytics.",
"author": "Umami Software, Inc. <hello@umami.is>",
"license": "MIT",

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 = '') {