From 6c6ccc647e59af6612050b0c47ccd3ffd129cbf9 Mon Sep 17 00:00:00 2001 From: konrad Date: Sun, 14 Nov 2021 21:06:25 +0000 Subject: [PATCH] fix: currentPage of pagination component is undefined (#1002) Co-authored-by: kolaente Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1002 Reviewed-by: dpschen Co-authored-by: konrad Co-committed-by: konrad --- src/components/misc/pagination.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/misc/pagination.vue b/src/components/misc/pagination.vue index a4f5944d..30baf5a1 100644 --- a/src/components/misc/pagination.vue +++ b/src/components/misc/pagination.vue @@ -89,7 +89,7 @@ export default { }, currentPage: { type: Number, - required: true, + default: 0, }, },