This commit is contained in:
Francis Cao 2025-08-25 07:40:32 -07:00
commit 6c832bd0db
113 changed files with 1671 additions and 1335 deletions

View file

@ -34,7 +34,7 @@ export const EVENT_COLUMNS = [
'entry',
'exit',
'referrer',
'grouped',
'domain',
'title',
'query',
'event',
@ -63,7 +63,7 @@ export const FILTER_COLUMNS = {
entry: 'url_path',
exit: 'url_path',
referrer: 'referrer_domain',
grouped: 'referrer_domain',
domain: 'referrer_domain',
hostname: 'hostname',
title: 'page_title',
query: 'url_query',

View file

@ -136,5 +136,6 @@ export async function getQueryFilters(
orderBy: params?.orderBy,
sortDescending: params?.sortDescending,
search: params?.search,
compare: params?.compare,
};
}