mirror of
https://github.com/umami-software/umami.git
synced 2026-02-14 17:45:38 +01:00
Fixed country not showing.
This commit is contained in:
parent
8d85e3fcdb
commit
69a189aae7
1 changed files with 1 additions and 1 deletions
|
|
@ -78,7 +78,7 @@ async function clickhouseQuery(
|
||||||
params,
|
params,
|
||||||
).then(a => {
|
).then(a => {
|
||||||
return Object.values(a).map(a => {
|
return Object.values(a).map(a => {
|
||||||
return { x: a.x, y: Number(a.y) };
|
return { ...a, x: a.x, y: Number(a.y) };
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue