We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5045a2b commit b73a60aCopy full SHA for b73a60a
2 files changed
components/modules/navigation/NavLink.vue
@@ -60,8 +60,10 @@ const handleClick = () => {
60
}
61
62
&.active {
63
+ background: var(--op-5);
64
+
65
& span {
- color: var(--brand);
66
+ color: var(--txt-primary);
67
68
69
& .link_icon:first-of-type {
pages/validators.vue
@@ -160,6 +160,13 @@ const activeTab = ref(
160
)
161
const dropdownItems = computed(() => tabs.value.filter((tab) => tab !== activeTab.value))
162
163
+watch(
164
+ () => route.query,
165
+ () => {
166
+ if (route.query.status) activeTab.value = route.query.status
167
+ },
168
+)
169
170
await getValidatorsStats()
171
await getValidators()
172
0 commit comments