diff --git a/CHANGELOG.md b/CHANGELOG.md index a45c442775..167c5a87ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed sku attribute is missing on compare page - @gibkigonzo (#4036) - Fixed z-index for aside in compare list - @gibkigonzo (#4037) - Disable checking max quantity when manage stock is set to false - @gibkigonzo (#4038) +- Fix v-model not working in BaseRadioButton - @lukeromanowicz (#4035) ## [1.11.0] - 2019.12.20 diff --git a/src/themes/default/components/core/blocks/Form/BaseRadiobutton.vue b/src/themes/default/components/core/blocks/Form/BaseRadiobutton.vue index f019cc37fe..590c270366 100644 --- a/src/themes/default/components/core/blocks/Form/BaseRadiobutton.vue +++ b/src/themes/default/components/core/blocks/Form/BaseRadiobutton.vue @@ -9,7 +9,7 @@ @keyup.enter="$emit('click')" @click="$emit('click')" @blur="$emit('blur')" - @change="$emit('change')" + @change="$emit('change', $event.target.checked)" :disabled="disabled" >