Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions components/LeftSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,7 @@ const mainLinks = reactive([
name: "Ecosystem",
path: "/stats?tab=ecosystem",
queryParam: {tab: "ecosystem"},
show: false,
// show: isMainnet(),
show: isMainnet(),
},
],
},
Expand Down
2 changes: 1 addition & 1 deletion components/modules/stats/GeoMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ watch(
<template #content>
<Flex align="center" gap="2" :style="{ width: '200px' }">
<Text size="12" weight="600" color="secondary">
Somewhere in..
"Somewhere in ..."
<Text size="12" weight="400" color="secondary">
means that it was not possible to determine the exact location.
</Text>
Expand Down
12 changes: 12 additions & 0 deletions components/modules/stats/tabs/EcosystemTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,13 @@ onMounted(async () => {
:class="$style.chart_card"
/>
</Flex>

<Flex align="center" justify="end" wide>
<Text size="12" color="tertiary" justify="start">Data provided by the
<NuxtLink to="https://probelab.io" target="_blank" :class="$style.link">ProbeLab</NuxtLink>
team
</Text>
</Flex>
</Flex>
</Flex>
</template>
Expand Down Expand Up @@ -116,6 +123,11 @@ onMounted(async () => {
height: 240px;
}

.link {
color: var(--brand);
font-weight: 600;
}

@media (max-width: 1050px) {
.chart {
/* width: 700px; */
Expand Down
3 changes: 1 addition & 2 deletions pages/stats/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down