mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01:00
fix bigint conversion error
This commit is contained in:
parent
263e92c888
commit
9aff134368
1 changed files with 1 additions and 1 deletions
|
|
@ -267,6 +267,6 @@ function combineSequentialDuplicates(array: any) {
|
|||
function parseResult(data: any) {
|
||||
return data.map(({ e1, e2, e3, e4, e5, e6, e7, count }) => ({
|
||||
items: combineSequentialDuplicates([e1, e2, e3, e4, e5, e6, e7]),
|
||||
count: +count,
|
||||
count: +Number(count),
|
||||
}));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue