[READ-ONLY] a fast, modern browser for the npm registry
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(a11y): include latest hash and params for skip button (#1443)

authored by

Robin and committed by
GitHub
e6f9eefa e5f60f6f

+6 -3
+6 -3
app/app.vue
··· 121 121 <template> 122 122 <div class="min-h-screen flex flex-col bg-bg text-fg"> 123 123 <NuxtPwaAssets /> 124 - <LinkBase to="#main-content" variant="button-primary" class="skip-link">{{ 125 - $t('common.skip_link') 126 - }}</LinkBase> 124 + <LinkBase 125 + :to="{ hash: '#main-content', query: route.query, params: route.params }" 126 + variant="button-primary" 127 + class="skip-link" 128 + >{{ $t('common.skip_link') }}</LinkBase 129 + > 127 130 128 131 <AppHeader :show-logo="!isHomepage" /> 129 132