Added null check
parent
dcaec67475
commit
0ce3151e2d
|
@ -783,8 +783,8 @@ export default {
|
||||||
this.$emit('update:modelValue', value);
|
this.$emit('update:modelValue', value);
|
||||||
this.$emit('change', { originalEvent: event, value });
|
this.$emit('change', { originalEvent: event, value });
|
||||||
},
|
},
|
||||||
flatOptions(options = []) {
|
flatOptions(options) {
|
||||||
return options.reduce((result, option, index) => {
|
return (options || []).reduce((result, option, index) => {
|
||||||
result.push({ optionGroup: option, group: true, index });
|
result.push({ optionGroup: option, group: true, index });
|
||||||
|
|
||||||
const optionGroupChildren = this.getOptionGroupChildren(option);
|
const optionGroupChildren = this.getOptionGroupChildren(option);
|
||||||
|
|
|
@ -771,8 +771,8 @@ export default {
|
||||||
this.$emit('update:modelValue', value);
|
this.$emit('update:modelValue', value);
|
||||||
this.$emit('change', { originalEvent: event, value });
|
this.$emit('change', { originalEvent: event, value });
|
||||||
},
|
},
|
||||||
flatOptions(options = []) {
|
flatOptions(options) {
|
||||||
return options.reduce((result, option, index) => {
|
return (options || []).reduce((result, option, index) => {
|
||||||
result.push({ optionGroup: option, group: true, index });
|
result.push({ optionGroup: option, group: true, index });
|
||||||
|
|
||||||
const optionGroupChildren = this.getOptionGroupChildren(option);
|
const optionGroupChildren = this.getOptionGroupChildren(option);
|
||||||
|
|
|
@ -621,8 +621,8 @@ export default {
|
||||||
this.$emit('update:modelValue', value);
|
this.$emit('update:modelValue', value);
|
||||||
this.$emit('change', { originalEvent: event, value });
|
this.$emit('change', { originalEvent: event, value });
|
||||||
},
|
},
|
||||||
flatOptions(options = []) {
|
flatOptions(options) {
|
||||||
return options.reduce((result, option, index) => {
|
return (options || []).reduce((result, option, index) => {
|
||||||
result.push({ optionGroup: option, group: true, index });
|
result.push({ optionGroup: option, group: true, index });
|
||||||
|
|
||||||
const optionGroupChildren = this.getOptionGroupChildren(option);
|
const optionGroupChildren = this.getOptionGroupChildren(option);
|
||||||
|
|
|
@ -901,8 +901,8 @@ export default {
|
||||||
this.$emit('update:modelValue', value);
|
this.$emit('update:modelValue', value);
|
||||||
this.$emit('change', { originalEvent: event, value });
|
this.$emit('change', { originalEvent: event, value });
|
||||||
},
|
},
|
||||||
flatOptions(options = []) {
|
flatOptions(options) {
|
||||||
return options.reduce((result, option, index) => {
|
return (options || []).reduce((result, option, index) => {
|
||||||
result.push({ optionGroup: option, group: true, index });
|
result.push({ optionGroup: option, group: true, index });
|
||||||
|
|
||||||
const optionGroupChildren = this.getOptionGroupChildren(option);
|
const optionGroupChildren = this.getOptionGroupChildren(option);
|
||||||
|
|
Loading…
Reference in New Issue