From 4f3a6fa7b89413dba650d6a1f6f152d2b99acde5 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Thu, 8 Jul 2021 09:43:24 +0200 Subject: [PATCH] fix: Transaction Pagination Scroll Top --- frontend/src/views/Pages/AccountOverview/GddTransactionList.vue | 2 ++ 1 file changed, 2 insertions(+) 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) }, }, }