From 3c9fca85e35c141709538f2575aa7e92f0024fa4 Mon Sep 17 00:00:00 2001 From: Raphix Date: Fri, 29 Aug 2025 15:26:00 +0200 Subject: [PATCH] Version 1.0.0-rc7 - Modification Bug Carousel --- src/components/UI/Carousel.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/UI/Carousel.vue b/src/components/UI/Carousel.vue index baf7392..62abe8f 100644 --- a/src/components/UI/Carousel.vue +++ b/src/components/UI/Carousel.vue @@ -136,6 +136,7 @@ function updateSlots() { } } allSlots.value.forEach((slot, index) => { + if(slot.props.mobile == undefined) return; if (slot.props.mobile == '' && (window.innerWidth > 769 && window.innerHeight > 607)) { allSlots.value.splice(index, 1); } @@ -145,7 +146,6 @@ function updateSlots() { ready.value = true; }, 100) } -