mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
fix bigint conversion error
This commit is contained in:
parent
263e92c888
commit
9aff134368
@ -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…
x
Reference in New Issue
Block a user