diff --git a/resources/js/components/shared/PaginationTable.vue b/resources/js/components/shared/PaginationTable.vue index 201ac3ce1f..0323ebb1cf 100644 --- a/resources/js/components/shared/PaginationTable.vue +++ b/resources/js/components/shared/PaginationTable.vue @@ -93,6 +93,7 @@ export default { }, ], pageInput: "", + defaultPage: 1, }; }, computed: { @@ -140,6 +141,7 @@ export default { this.$emit("page-change", page); }, changePerPage(value) { + this.goToPage(this.defaultPage); this.$emit("per-page-change", value); }, redirectPage(value) {