mirror of
https://github.com/umami-software/umami.git
synced 2026-02-14 09:35:36 +01:00
Compare commits
No commits in common. "67cdfdfb7e7ee3fea9a2699155df8dfbd826f724" and "a37de757a098ed7a64525246216b0f30b2c8139c" have entirely different histories.
67cdfdfb7e
...
a37de757a0
2 changed files with 3 additions and 2 deletions
|
|
@ -14,6 +14,7 @@ export function PixelsTable({ showActions, ...props }: PixelsTableProps) {
|
|||
const { formatMessage, labels } = useMessages();
|
||||
const { renderUrl } = useNavigation();
|
||||
const { getSlugUrl } = useSlug('pixel');
|
||||
console.log(showActions);
|
||||
|
||||
return (
|
||||
<DataTable {...props}>
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ export async function getWeeklyTraffic(...args: [websiteId: string, filters: Que
|
|||
}
|
||||
|
||||
async function relationalQuery(websiteId: string, filters: QueryFilters) {
|
||||
const { timezone = 'utc' } = filters;
|
||||
const timezone = 'utc';
|
||||
const { rawQuery, getDateWeeklySQL, parseFilters } = prisma;
|
||||
const { filterQuery, joinSessionQuery, cohortQuery, queryParams } = parseFilters({
|
||||
...filters,
|
||||
|
|
@ -33,7 +33,7 @@ async function relationalQuery(websiteId: string, filters: QueryFilters) {
|
|||
and website_event.created_at between {{startDate}} and {{endDate}}
|
||||
${filterQuery}
|
||||
group by time
|
||||
order by 1
|
||||
order by 2
|
||||
`,
|
||||
queryParams,
|
||||
FUNCTION_NAME,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue