Skip to content

Commit b8a582c

Browse files
committed
Fixed events search. Closes #3329
1 parent 84f7032 commit b8a582c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "umami",
33
"version": "2.18.0",
4-
"description": "A simple, fast, privacy-focused alternative to Google Analytics.",
4+
"description": "A modern, privacy-focused alternative to Google Analytics.",
55
"author": "Umami Software, Inc. <hello@umami.is>",
66
"license": "MIT",
77
"homepage": "https://umami.is",

src/queries/sql/events/getWebsiteEvents.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ async function relationalQuery(websiteId: string, filters: QueryFilters, pagePar
5252
limit 1000)
5353
select * from events
5454
`,
55-
{ ...params, query: `%${search}%` },
55+
{ ...params, search: `%${search}%` },
5656
pageParams,
5757
);
5858
}

0 commit comments

Comments
 (0)