diff --git a/CHANGELOG.md b/CHANGELOG.md index e580c0195e..3469b84e55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed / Improved - The default config file is now in more human-readable format - @juho-jaakkola (#4197) -- Create only once aside async component - @gibkigonzo (#4229) +- Create only once aside async component - @gibkigonzo (#4229, #4268) ### Fixed - Fixes when having multiple custom options with overlapping option_type_id values, selecting 1 changes the others - @carlokok (#4196) diff --git a/src/themes/default/components/core/blocks/Microcart/Product.vue b/src/themes/default/components/core/blocks/Microcart/Product.vue index f7e275dc77..a6a7145df4 100644 --- a/src/themes/default/components/core/blocks/Microcart/Product.vue +++ b/src/themes/default/components/core/blocks/Microcart/Product.vue @@ -308,7 +308,8 @@ export default { const maxQuantity = await this.getQuantity() this.maxQuantity = maxQuantity } - } + }, + immediate: true } } }