mirror of
https://github.com/umami-software/umami.git
synced 2026-02-13 00:55:37 +01:00
checkpoint
This commit is contained in:
parent
3e2c098c05
commit
8f934c7e6c
14 changed files with 73 additions and 63 deletions
|
|
@ -12,7 +12,7 @@ export default function EventsChart({ websiteId, className, token }) {
|
|||
const [{ startDate, endDate, unit, modified }] = useDateRange(websiteId);
|
||||
const [timezone] = useTimezone();
|
||||
const {
|
||||
query: { url, eventType },
|
||||
query: { url, eventName },
|
||||
} = usePageQuery();
|
||||
|
||||
const { data, loading } = useFetch(
|
||||
|
|
@ -24,11 +24,11 @@ export default function EventsChart({ websiteId, className, token }) {
|
|||
unit,
|
||||
tz: timezone,
|
||||
url,
|
||||
event_type: eventType,
|
||||
event_name: eventName,
|
||||
token,
|
||||
},
|
||||
},
|
||||
[modified, eventType],
|
||||
[modified, eventName],
|
||||
);
|
||||
|
||||
const datasets = useMemo(() => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue