From eea54a35ba53fd4c91f140d0b653948066b5b336 Mon Sep 17 00:00:00 2001 From: Dipanshu Sabharwal Date: Wed, 29 Sep 2021 20:50:45 +0530 Subject: [PATCH] totalPage parameter showing undefined bug fixed (#854) --- src/components/pagination/VgtPaginationPageInfo.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/pagination/VgtPaginationPageInfo.vue b/src/components/pagination/VgtPaginationPageInfo.vue index ef962921..e525bf7c 100644 --- a/src/components/pagination/VgtPaginationPageInfo.vue +++ b/src/components/pagination/VgtPaginationPageInfo.vue @@ -97,7 +97,7 @@ export default { lastRecordOnPage: last, totalRecords: this.totalRecords, currentPage: this.currentPage, - totalPages: this.lastPage, + totalPage: this.lastPage, }; }, },