Skip to content

Commit

Permalink
chore: add role to nav pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Yizack committed Jul 24, 2024
1 parent 084085c commit c8ebc16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/NavBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</div>
<div class="offcanvas-body text-center">
<ul class="navbar-nav justify-content-end flex-grow-1 pe-3">
<li v-for="(page, key) in SCHEMA_pages" :key="key" class="nav-item text-uppercase" data-bs-dismiss="offcanvas">
<li v-for="(page, key) in SCHEMA_pages" :key="key" role="presentation" class="nav-item text-uppercase" data-bs-dismiss="offcanvas">
<NuxtLink class="nav-link text-decoration-none" aria-current="page" :to="page.to">{{ t(key) }}</NuxtLink>
</li>
</ul>
Expand Down

0 comments on commit c8ebc16

Please sign in to comment.