We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fdb18b commit b25741cCopy full SHA for b25741c
CountItems/CountManager.js
@@ -72,8 +72,8 @@ class CountManager {
72
&& results.dataManaged.locations
73
&& results.dataManaged.total) {
74
const { locations, total } = results.dataManaged;
75
- this.store.dataManaged.total.curr += BigInt(total.curr);
76
- this.store.dataManaged.total.prev += BigInt(total.prev);
+ this.store.dataManaged.total.curr += total.curr;
+ this.store.dataManaged.total.prev += total.prev;
77
Object.keys(locations).forEach(site => {
78
if (!this.store.dataManaged.byLocation[site]) {
79
this.store.dataManaged.byLocation[site] = { ...locations[site] };
0 commit comments