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.
2 parents b08f935 + aebcf5d commit 8d2502dCopy full SHA for 8d2502d
src/components/DsfrPagination/DsfrPagination.vue
@@ -50,7 +50,9 @@ const isCurrentPage = (page: Page) => props.pages.indexOf(page) === props.curren
50
:title="firstPageTitle"
51
:aria-disabled="currentPage === 0 ? true : undefined"
52
@click.prevent="tofirstPage()"
53
- />
+ >
54
+ <span class="fr-sr-only">{{ firstPageTitle }}</span>
55
+ </a>
56
</li>
57
<li>
58
<a
@@ -95,7 +97,9 @@ const isCurrentPage = (page: Page) => props.pages.indexOf(page) === props.curren
95
97
:disabled="currentPage === pages.length - 1 ? true : undefined"
96
98
:aria-disabled="currentPage === pages.length - 1 ? true : undefined"
99
@click.prevent="toLastPage()"
100
101
+ <span class="fr-sr-only">{{ lastPageTitle }}</span>
102
103
104
</ul>
105
</nav>
0 commit comments