diff --git a/CHANGELOG.md b/CHANGELOG.md index e9adaf1118..da93ac479d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,7 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Improve tsconfig for better IDE paths support - @patzick, @filrak (#2474) - fix breadcrumbs changing too early - @filrak (#2469) - add cart count config, allows you to display the item count instead of a sum of the item quantities - @pauluse (#2483) -- improved product gallery load view, shows correct image on reload - @patzick (#2481, #2482, #2488) +- improved product gallery load view, shows correct image on reload - @patzick (#2481, #2482, #2488, #2501) - Fix an issue where the index.html template within a theme is ignored - @EnthrallRecords (#2489) ### Deprecated / Removed diff --git a/src/themes/default/components/core/ProductGallery.vue b/src/themes/default/components/core/ProductGallery.vue index c591ea9f50..b34fb18fb4 100644 --- a/src/themes/default/components/core/ProductGallery.vue +++ b/src/themes/default/components/core/ProductGallery.vue @@ -1,26 +1,26 @@ @@ -51,7 +51,8 @@ export default { return { isZoomOpen: false, showProductGalleryCarousel: false, - currentSlide: 0 + currentSlide: 0, + carouselLoaded: false } }, mounted () { @@ -80,11 +81,21 @@ export default {