Fix pagination sync issue with buefy grid tables

This commit is contained in:
Lance Edgar 2020-07-15 22:05:57 -05:00
parent 0dfe52a42d
commit 3819dd9469

View file

@ -334,7 +334,7 @@
}, },
onPageChange(page) { onPageChange(page) {
this.page = page this.currentPage = page
this.loadAsyncData() this.loadAsyncData()
}, },
@ -343,7 +343,7 @@
this.sortOrder = order this.sortOrder = order
// always reset to first page when changing sort options // always reset to first page when changing sort options
// TODO: i mean..right? would we ever not want that? // TODO: i mean..right? would we ever not want that?
this.page = 1 this.currentPage = 1
this.loadAsyncData() this.loadAsyncData()
}, },