diff --git a/frontend/src/components/PaginationButtons.vue b/frontend/src/components/PaginationButtons.vue index 252301388..bf2c19488 100644 --- a/frontend/src/components/PaginationButtons.vue +++ b/frontend/src/components/PaginationButtons.vue @@ -7,7 +7,7 @@ - {{ currentPage }} / {{ totalPages }} + {{ value }} / {{ totalPages }} @@ -18,13 +18,35 @@ diff --git a/frontend/src/views/Pages/AccountOverview/GdtTransactionList.vue b/frontend/src/views/Pages/AccountOverview/GdtTransactionList.vue index 1ad4ba13e..8f1fd2839 100644 --- a/frontend/src/views/Pages/AccountOverview/GdtTransactionList.vue +++ b/frontend/src/views/Pages/AccountOverview/GdtTransactionList.vue @@ -29,10 +29,9 @@ @@ -58,17 +57,6 @@ export default { pageSize: 25, } }, - computed: { - hasNext() { - return this.currentPage * this.pageSize < this.transactionGdtCount - }, - hasPrevious() { - return this.currentPage > 1 - }, - totalPages() { - return Math.ceil(this.transactionGdtCount / this.pageSize) - }, - }, methods: { async updateGdt() { this.$apollo
{{ currentPage }} / {{ totalPages }}
{{ value }} / {{ totalPages }}