diff --git a/components/LeftSidebar.vue b/components/LeftSidebar.vue index 4b6f398b..61c43a6e 100644 --- a/components/LeftSidebar.vue +++ b/components/LeftSidebar.vue @@ -95,8 +95,7 @@ const mainLinks = reactive([ name: "Ecosystem", path: "/stats?tab=ecosystem", queryParam: {tab: "ecosystem"}, - show: false, - // show: isMainnet(), + show: isMainnet(), }, ], }, diff --git a/components/modules/stats/GeoMap.vue b/components/modules/stats/GeoMap.vue index aa89cd55..1c6e3353 100644 --- a/components/modules/stats/GeoMap.vue +++ b/components/modules/stats/GeoMap.vue @@ -510,7 +510,7 @@ watch( @@ -116,6 +123,11 @@ onMounted(async () => { height: 240px; } +.link { + color: var(--brand); + font-weight: 600; +} + @media (max-width: 1050px) { .chart { /* width: 700px; */ diff --git a/pages/stats/index.vue b/pages/stats/index.vue index 0473c9fd..20e00bf3 100644 --- a/pages/stats/index.vue +++ b/pages/stats/index.vue @@ -77,8 +77,7 @@ const tabs = ref([ }, { name: "ecosystem", - visible: false, - // visible: isMainnet(), + visible: isMainnet(), }, ]) const activeTab = ref(route.query.tab && tabs.value.filter(t => t.visible).map(t => t.name).includes(route.query.tab) ? route.query.tab : tabs.value[0].name)