diff --git a/src/components/select/select.vue b/src/components/select/select.vue index baf5a6f..6f1abec 100644 --- a/src/components/select/select.vue +++ b/src/components/select/select.vue @@ -589,7 +589,7 @@ const [selectedOption] = this.values; if (selectedOption && this.filterable && !this.multiple && !focused){ const selectedLabel = selectedOption.label || selectedOption.value; - if (this.query !== selectedLabel) { + if (selectedLabel && this.query !== selectedLabel) { this.preventRemoteCall = true; this.query = selectedLabel; } -- libgit2 0.21.4