diff --git a/CHANGELOG.md b/CHANGELOG.md index e04b77fd8a..8093c12b6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fix page-not-found redirect in dispatcher - @gibkigonzo (#3956) - Fix hiding overlay for newsletter modal - @gibkigonzo (#3970) - Fix problem with storeView as dependency in filters - @gibkigonzo (#3968) - +- Fix v-model not working in BaseRadioButton - @lukeromanowicz (#4035) ## [1.10.5] - 28.11.2019 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" >