diff --git a/frontend/components/containers/annotation/Pagination.vue b/frontend/components/containers/annotation/Pagination.vue
index f97c33e3..66851302 100644
--- a/frontend/components/containers/annotation/Pagination.vue
+++ b/frontend/components/containers/annotation/Pagination.vue
@@ -22,6 +22,25 @@
/>
+
+
+
+ mdi-page-first
+
+
+
+ mdi-page-first
+
+
→
+
+
+
+ mdi-page-last
+
+
+
+ mdi-page-last
+
+
@@ -108,6 +146,12 @@ export default {
nextPage() {
const page = Math.min(this.value + 1, this.length)
this.$emit('input', page)
+ },
+ firstPage() {
+ this.$emit('input', 1)
+ },
+ lastPage() {
+ this.$emit('input', this.length)
}
}
}