fixed page 0 on client side rendered tables

This commit is contained in:
2024-08-21 09:18:02 +02:00
parent 27e4f6cd82
commit 4221eb7f45

View File

@@ -340,7 +340,7 @@ Vue.component('tt-table', {
}
this.pagination = {
page: page++,
page: Math.max(page, 1),
per_page: this.pagination?.per_page ? parseInt(this.pagination.per_page) : 10,
total_rows: this.rawRows.length || 0,
total_pages: this.rawRows.length / this.pagination?.per_page,