mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-22 09:57:00 +01:00
Fixed realtime chart rendering of initial payload.
This commit is contained in:
parent
c520a329d2
commit
7a5f28870f
@ -38,6 +38,9 @@ export function Realtime({ websiteId }) {
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (data) {
|
if (data) {
|
||||||
|
if (!currentData) {
|
||||||
|
setCurrentData(data);
|
||||||
|
} else {
|
||||||
const date = subMinutes(startOfMinute(new Date()), REALTIME_RANGE);
|
const date = subMinutes(startOfMinute(new Date()), REALTIME_RANGE);
|
||||||
const time = date.getTime();
|
const time = date.getTime();
|
||||||
|
|
||||||
@ -48,6 +51,7 @@ export function Realtime({ websiteId }) {
|
|||||||
timestamp: data.timestamp,
|
timestamp: data.timestamp,
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}, [data]);
|
}, [data]);
|
||||||
|
|
||||||
const realtimeData: RealtimeData = useMemo(() => {
|
const realtimeData: RealtimeData = useMemo(() => {
|
||||||
|
Loading…
Reference in New Issue
Block a user