diff --git a/public/plugins/vue/tt-components/tt-table.js b/public/plugins/vue/tt-components/tt-table.js index 1834e2b31..31002b575 100644 --- a/public/plugins/vue/tt-components/tt-table.js +++ b/public/plugins/vue/tt-components/tt-table.js @@ -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,