From 2572399747ce383212d1567989ee014df7d87822 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Thu, 24 Oct 2024 14:43:43 -0500 Subject: [PATCH] Fixed a bug in the Pager component introduced with the upgrade to PrimeVue 4 where the default page was 0 rather than 1. --- app/components/ving/Pager.vue | 12 +++++++----- ving/docs/change-log.md | 3 ++- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/app/components/ving/Pager.vue b/app/components/ving/Pager.vue index b1f70864..48800c2e 100644 --- a/app/components/ving/Pager.vue +++ b/app/components/ving/Pager.vue @@ -1,10 +1,12 @@ diff --git a/ving/docs/change-log.md b/ving/docs/change-log.md index a0ddfd74..1a5a9eb9 100644 --- a/ving/docs/change-log.md +++ b/ving/docs/change-log.md @@ -12,7 +12,8 @@ outline: deep * Updated the redis client to trap bad connection strings with an error message. * Updated the drizzle client to use dotenv to get the connection string. * Updated the drizzle client to trap bad connection strings with an error message. - * Fix potential bug where someone enters a negative page number into the paginator. + * Fixed a potential bug where someone enters a negative page number into the paginator. + * Fixed a bug in the Pager component introduced with the upgrade to PrimeVue 4 where the default page was 0 rather than 1. ### 2024-10-01 * Added colin's patch for mysql pagination.