From ec26e788af4ca514789eee9e0810d3e79adb8d48 Mon Sep 17 00:00:00 2001 From: kristof de spiegeleer Date: Mon, 12 Jul 2021 08:00:58 +0000 Subject: [PATCH] grid map --- {content => _archive}/site/navigation.json | 0 {content => _archive}/site/social.json | 0 .../marketing/sections/cta-sections/StateMap.vue | 7 ++++--- 3 files changed, 4 insertions(+), 3 deletions(-) rename {content => _archive}/site/navigation.json (100%) rename {content => _archive}/site/social.json (100%) diff --git a/content/site/navigation.json b/_archive/site/navigation.json similarity index 100% rename from content/site/navigation.json rename to _archive/site/navigation.json diff --git a/content/site/social.json b/_archive/site/social.json similarity index 100% rename from content/site/social.json rename to _archive/site/social.json diff --git a/src/components/marketing/sections/cta-sections/StateMap.vue b/src/components/marketing/sections/cta-sections/StateMap.vue index 3745ad077..89e06c47a 100644 --- a/src/components/marketing/sections/cta-sections/StateMap.vue +++ b/src/components/marketing/sections/cta-sections/StateMap.vue @@ -93,11 +93,12 @@ export default { "https://explorer.threefold.io/api/stats" ); let farms = getFarms.data.length; - let hru = (results.data.hru / 1000000).toFixed(); + let hru = (results.data.hru / 1000).toFixed(); + let cru = (results.data.cru ).toFixed(); this.stats.push( { farms: farms }, - { "HDD PB": hru }, - { countries: results.data.countries } + { "Storage TB": hru }, + { "Compute Cores": cru} ); } catch (error) { console.log(error);