We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7ae167d + 168fb2f commit 8491defCopy full SHA for 8491def
src/components/FormSelectList.vue
@@ -134,7 +134,10 @@
134
},
135
fillSelectListOptions() {
136
if (this.options.dataSource && this.options.dataSource === 'provideData') {
137
- this.selectListOptions = this.options && this.options.optionsList ? this.options.optionsList : [];
+ if (this.options && this.options.optionsList && !isEqual(this.selectListOptions, this.options.optionsList)) {
138
+ this.selectListOptions = this.options.optionsList;
139
+ }
140
+ this.selectListOptions = this.selectListOptions || [];
141
}
142
143
if (this.options.dataSource && this.options.dataSource === 'dataObject') {
0 commit comments