mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00: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…
Reference in a new issue