fix: Reload Transaction Link List Always on Page 1

This commit is contained in:
Moriz Wahl 2022-05-04 10:46:23 +02:00
parent 737859db89
commit bee388c07c

View File

@ -84,7 +84,11 @@ export default {
this.visible = false
} else {
this.transactionLinks = []
this.updateListTransactionLinks()
if (this.currentPage === 1) {
this.updateListTransactionLinks()
} else {
this.currentPage = 1
}
this.visible = true
}
},