diff --git a/src/resources/plugins/TsForm/TsFormRadio.vue b/src/resources/plugins/TsForm/TsFormRadio.vue index a950783f022c7305dab4ebf0ece11d1aacb614d5..d8f807c214103aa3ef3e8d6997e5ebbf29a845ae 100755 --- a/src/resources/plugins/TsForm/TsFormRadio.vue +++ b/src/resources/plugins/TsForm/TsFormRadio.vue @@ -260,9 +260,7 @@ export default { } if (this.allowToggle && this.currentValue == label) { this.currentValue = null; - this.$emit('update:value', this.currentValue); - this.$emit('change', this.currentValue); - this.$emit('on-change', this.currentValue); + this.onChangeValue(); } } },