Skip to content

Commit

Permalink
fix order of screen reader in the footer
Browse files Browse the repository at this point in the history
  • Loading branch information
goemen committed Apr 25, 2024
1 parent c7c30f5 commit 4a55cc2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions frontend/src/components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,14 @@
</v-col>
</v-row>
</v-col>
<v-col class="justify-right" role="listbox" aria-label="More information links">
<v-col
class="justify-right"
role="listbox"
id="more-info"
aria-label="More information links"
>
<p class="more-info-title">MORE INFO</p>
<v-row role="presentation" aria-labelledby="">
<v-row role="presentation" aria-labelledby="more-info">
<v-col class="links" style="text-align: left">
<v-list>
<v-list-item
Expand All @@ -49,7 +54,6 @@
:data-testid="link.id"
role="listitem"
:aria-label="link.label"
tabindex="0"
>
<v-list-item-title v-text="link.label"></v-list-item-title>
</v-list-item>
Expand All @@ -61,8 +65,8 @@
class="footer-btn pl-1 pr-1"
v-for="link in settings.links.right"
v-bind:href="sanitizeUrl(link.to)"
:aria-label="link.label"
:data-testid="link.id"
tabindex="0"
>
<v-list-item-title v-text="link.label"></v-list-item-title>
</v-list-item>
Expand Down

0 comments on commit 4a55cc2

Please sign in to comment.