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 59e4c00 commit 814ac8fCopy full SHA for 814ac8f
frontend/components/HeaderBar.vue
@@ -57,7 +57,7 @@
57
<NuxtLink
58
v-else
59
prefetch-on="interaction"
60
- :class="{ selected: subheaderTabSelection == tab.title.toLowerCase() }"
+ :class="{ selected: subheaderTabSelection == tab.title.replace(' ', '_').toLowerCase() }"
61
:target="tab.outbound ? '_blank' : ''"
62
:to="tab.href"
63
class="tab"
frontend/getRoutes.ts
@@ -27,6 +27,7 @@ export default async function () {
27
'/platform/web',
28
'/platform/games',
29
'/platform/admin',
30
+ '/platform/app_hosting',
31
]
32
33
const ref = collection(firestore, 'content')
0 commit comments