From 005bfeb2f1aac67923e6e8578720631e630d7e4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernhard=20H=C3=B6rmann?= Date: Sun, 4 Nov 2018 12:14:16 +0100 Subject: [PATCH] Fix error: wrong variable You are accessing a non existing variable. Maybe you forgot to change this? --- src/components/VuetablePaginationMixin.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/VuetablePaginationMixin.vue b/src/components/VuetablePaginationMixin.vue index b754be97..acaec183 100644 --- a/src/components/VuetablePaginationMixin.vue +++ b/src/components/VuetablePaginationMixin.vue @@ -31,7 +31,7 @@ export default { totalPage () { return this.tablePagination === null ? 0 - : this.last_page - this.firstPage + 1 + : this.tablePagination.last_page - this.firstPage + 1 }, lastPage () { return this.tablePagination === null