diff --git a/src/components/marketing/sections/cta-sections/Map.vue b/src/components/marketing/sections/cta-sections/Map.vue
index e544ae09b..fd03c3009 100644
--- a/src/components/marketing/sections/cta-sections/Map.vue
+++ b/src/components/marketing/sections/cta-sections/Map.vue
@@ -31,13 +31,7 @@
@@ -57,7 +51,7 @@
"
>
@@ -76,18 +70,16 @@
"
>
-
+
@@ -126,16 +118,17 @@ export default {
let nodes = results.data.onlinenodes;
let hru = parseInt(results.data.hru);
let sru = parseInt(results.data.sru) / 1000; // To TB
- let capacity = (hru + sru).toFixed();
- let cru = results.data.cru.toFixed();
+ let capacity = (hru + sru)
+ .toFixed()
+ .slice(0, 4)
+ .toString()
+ .replace(/\B(?=(\d{2})+(?!\d))/g, ",");
+ let cores = results.data.cru
+ .toFixed()
+ .toString()
+ .replace(/\B(?=(\d{3})+(?!\d))/g, ",");
let countries = results.data.countries;
- this.stats.push(
- // { farms: farms },
- { capacity: capacity },
- { nodes: nodes },
- { cores: cru },
- { countries: countries }
- );
+ this.stats.push(capacity, nodes, cores, countries);
} catch (error) {
console.log(error);
}