@@ -51,19 +51,19 @@ const mainLinks = reactive([
51
51
{
52
52
name: " Active" ,
53
53
path: " /validators?status=active&page=1" ,
54
- queryParam: {status: " active" },
54
+ queryParam: { status: " active" },
55
55
show: true ,
56
56
},
57
57
{
58
58
name: " Jailed" ,
59
59
path: " /validators?status=jailed&page=1" ,
60
- queryParam: {status: " jailed" },
60
+ queryParam: { status: " jailed" },
61
61
show: true ,
62
62
},
63
63
{
64
64
name: " Inactive" ,
65
65
path: " /validators?status=inactive&page=1" ,
66
- queryParam: {status: " inactive" },
66
+ queryParam: { status: " inactive" },
67
67
show: true ,
68
68
},
69
69
],
@@ -76,26 +76,26 @@ const mainLinks = reactive([
76
76
{
77
77
name: " General" ,
78
78
path: " /stats?tab=general" ,
79
- queryParam: {tab: " general" },
79
+ queryParam: { tab: " general" },
80
80
show: true ,
81
81
},
82
82
{
83
83
name: " Blocks" ,
84
84
path: " /stats?tab=blocks" ,
85
- queryParam: {tab: " blocks" },
85
+ queryParam: { tab: " blocks" },
86
86
show: true ,
87
87
},
88
88
{
89
89
name: " Rollups" ,
90
90
path: " /stats?tab=rollups" ,
91
- queryParam: {tab: " rollups" },
91
+ queryParam: { tab: " rollups" },
92
92
show: true ,
93
93
},
94
94
{
95
95
name: " Ecosystem" ,
96
96
path: " /stats?tab=ecosystem" ,
97
97
queryParam: {tab: " ecosystem" },
98
- show: isMainnet () ,
98
+ show: false ,
99
99
},
100
100
],
101
101
},
@@ -196,7 +196,8 @@ const handleOnClose = () => {
196
196
<Flex justify =" between" align =" center" >
197
197
<NuxtLink to =" /" :class =" $style.logo" >
198
198
<Flex align =" center" gap =" 8" >
199
- <Icon name =" logo" size =" 16" color =" tertiary" :class =" $style.logo_symbol" />
199
+ <Icon v-if =" getNetworkName() !== 'Mammoth'" name =" logo" size =" 16" color =" tertiary" :class =" $style.logo_symbol" />
200
+ <Text v-else size =" 16" style =" filter : grayscale (1 )" >🦣</Text >
200
201
201
202
<svg width =" 86" height =" 14" viewBox =" 0 0 96 16" xmlns =" http://www.w3.org/2000/svg" :class =" $style.logo_name" >
202
203
<path
@@ -301,10 +302,17 @@ const handleOnClose = () => {
301
302
302
303
<template #popup >
303
304
<DropdownTitle >
304
- <Flex gap =" 8" >
305
+ <Flex v-if = " head.synced " gap =" 8" >
305
306
<Icon name =" check" size =" 12" color =" brand" />
306
307
<Flex direction =" column" gap =" 6" >
307
- <Text color =" secondary" >Head {{ head.synced ? "" : "not" }} Synced </Text >
308
+ <Text color =" secondary" >Head Synced </Text >
309
+ <Text color =" tertiary" >{{ head.chain_id }}</Text >
310
+ </Flex >
311
+ </Flex >
312
+ <Flex v-else gap =" 8" >
313
+ <Icon name =" close" size =" 12" color =" red" />
314
+ <Flex direction =" column" gap =" 6" >
315
+ <Text color =" secondary" >Head not Synced </Text >
308
316
<Text color =" tertiary" >{{ head.chain_id }}</Text >
309
317
</Flex >
310
318
</Flex >
@@ -314,6 +322,7 @@ const handleOnClose = () => {
314
322
<DropdownItem @click =" handleNavigate('https://celenium.io')" >Mainnet</DropdownItem >
315
323
<DropdownItem @click =" handleNavigate('https://mocha-4.celenium.io')" >Mocha-4</DropdownItem >
316
324
<DropdownItem @click =" handleNavigate('https://arabica.celenium.io')" >Arabica</DropdownItem >
325
+ <!-- <DropdownItem @click="handleNavigate('https://mammoth.celenium.io')">Mammoth</DropdownItem> -->
317
326
</template >
318
327
</Dropdown >
319
328
</Flex >
0 commit comments