From b907613e053d31ba27785e7b17fd6e1c544d2d9a Mon Sep 17 00:00:00 2001 From: Rodrigo Sanchez Date: Tue, 19 Mar 2024 19:56:08 +1100 Subject: [PATCH] Update Carousel.vue removed unused emptyMessage computed --- components/lib/carousel/Carousel.vue | 3 --- 1 file changed, 3 deletions(-) diff --git a/components/lib/carousel/Carousel.vue b/components/lib/carousel/Carousel.vue index 8e09c7be0..858be2e50 100755 --- a/components/lib/carousel/Carousel.vue +++ b/components/lib/carousel/Carousel.vue @@ -613,9 +613,6 @@ export default { empty() { return !this.value || this.value.length === 0; }, - emptyMessageText() { - return this.$primevue.config?.locale?.emptyMessage || ''; - }, totalIndicators() { return this.value ? Math.max(Math.ceil((this.value.length - this.d_numVisible) / this.d_numScroll) + 1, 0) : 0; },