From a831edfee82d7604e4a7f9273d50dfe1be5741fd Mon Sep 17 00:00:00 2001 From: KumJungMin Date: Sun, 1 Dec 2024 13:49:50 +0900 Subject: [PATCH] fix: change hasValidItemCount condition --- packages/primevue/src/carousel/Carousel.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/primevue/src/carousel/Carousel.vue b/packages/primevue/src/carousel/Carousel.vue index 19e6f03495..482579b685 100755 --- a/packages/primevue/src/carousel/Carousel.vue +++ b/packages/primevue/src/carousel/Carousel.vue @@ -602,7 +602,7 @@ export default { return this.orientation === 'vertical'; }, hasValidItemCount() { - return this.value && this.value.length >= this.d_numVisible; + return this.value && this.value.length > this.d_numVisible; }, isCircular() { return this.hasValidItemCount() && this.d_circular;