bug fixed #6313
This commit is contained in:
parent
873c7c3bd2
commit
9de03cf9f5
1 changed files with 1 additions and 1 deletions
|
@ -710,7 +710,7 @@
|
||||||
if (value === '') this.values = [];
|
if (value === '') this.values = [];
|
||||||
else if (checkValuesNotEqual(value,publicValue,values)) {
|
else if (checkValuesNotEqual(value,publicValue,values)) {
|
||||||
this.$nextTick(() => this.values = getInitialValue().map(getOptionData).filter(Boolean));
|
this.$nextTick(() => this.values = getInitialValue().map(getOptionData).filter(Boolean));
|
||||||
!(Array.isArray(value)) && this.dispatch('FormItem', 'on-form-change', this.publicValue);
|
if (!this.multiple) this.dispatch('FormItem', 'on-form-change', this.publicValue);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
values(now, before){
|
values(now, before){
|
||||||
|
|
Loading…
Add table
Reference in a new issue