mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-24 18:26:20 +01:00
Remove bigint.
This commit is contained in:
parent
4d41527f94
commit
a9617cb704
@ -104,7 +104,7 @@ export interface WebsiteEventDataFields {
|
||||
field: string;
|
||||
type: number;
|
||||
value?: string;
|
||||
total: bigint;
|
||||
total: number;
|
||||
}
|
||||
|
||||
export interface WebsitePageviews {
|
||||
|
@ -32,10 +32,10 @@ export default async (
|
||||
|
||||
const data = results.reduce(
|
||||
(obj, row) => {
|
||||
obj.records += row.total;
|
||||
obj.records += Number(row.total);
|
||||
return obj;
|
||||
},
|
||||
{ fields: results.length, records: BigInt(0) },
|
||||
{ fields: results.length, records: 0 },
|
||||
);
|
||||
|
||||
return ok(res, data);
|
||||
|
Loading…
Reference in New Issue
Block a user