diff --git a/src/components/paginator/Paginator.vue b/src/components/paginator/Paginator.vue index 229608d63..dbde6c6a3 100644 --- a/src/components/paginator/Paginator.vue +++ b/src/components/paginator/Paginator.vue @@ -74,6 +74,11 @@ export default { }, rows(newValue) { this.d_rows = newValue; + }, + totalRecords(newValue) { + if (this.page > 0 && newValue && (this.d_first >= newValue)) { + this.changePage(this.pageCount - 1); + } } }, methods: {