diff --git a/frontend/src/views/Pages/AccountOverview/GddTransactionList.vue b/frontend/src/views/Pages/AccountOverview/GddTransactionList.vue index 55f03f9e2..fdc3a7607 100644 --- a/frontend/src/views/Pages/AccountOverview/GddTransactionList.vue +++ b/frontend/src/views/Pages/AccountOverview/GddTransactionList.vue @@ -149,10 +149,12 @@ export default { showNext() { this.currentPage++ this.updateTransactions() + window.scrollTo(0, 0) }, showPrevious() { this.currentPage-- this.updateTransactions() + window.scrollTo(0, 0) }, }, }