We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a273a5 commit 732f857Copy full SHA for 732f857
components/TheHeader.vue
@@ -128,7 +128,13 @@ const handleNavigate = (url) => {
128
</Flex>
129
130
<template #content>
131
- <Text color="primary"><template v-if="!head.synced">Not</template> Synced </Text>
+ <Flex align="center" direction="column" gap="4">
132
+ <Flex align="center" justify="start" wide>
133
+ <Text size="12" color="primary"> {{ head.synced ? 'Synced' : 'Not Synced' }} </Text>
134
+ </Flex>
135
+
136
+ <Text size="12" color="tertiary"> {{ head.chain_id }} </Text>
137
138
</template>
139
</Tooltip>
140
0 commit comments