mirror of
https://github.com/umami-software/umami.git
synced 2026-02-14 01:25:37 +01:00
Teams context settings.
This commit is contained in:
parent
4429198397
commit
8f853ddb97
77 changed files with 317 additions and 272 deletions
|
|
@ -11,7 +11,7 @@ const defaultParameters = {
|
|||
parameters: { fields: [], filters: [] },
|
||||
};
|
||||
|
||||
export default function EventDataReport({ reportId }: { reportId: string }) {
|
||||
export default function EventDataReport({ reportId }: { reportId?: string }) {
|
||||
return (
|
||||
<Report reportId={reportId} defaultParameters={defaultParameters}>
|
||||
<ReportHeader icon={<Nodes />} />
|
||||
|
|
|
|||
10
src/app/(main)/reports/event-data/page.tsx
Normal file
10
src/app/(main)/reports/event-data/page.tsx
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import EventDataReport from './EventDataReport';
|
||||
import { Metadata } from 'next';
|
||||
|
||||
export default function FunnelReportPage() {
|
||||
return <EventDataReport />;
|
||||
}
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Funnel Report | Umami',
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue