diff --git a/src/components/Select.vue b/src/components/Select.vue index ffdcb54..77bf4f6 100644 --- a/src/components/Select.vue +++ b/src/components/Select.vue @@ -969,7 +969,6 @@ * @return {void} */ onSearchBlur() { - if (this.mousedown && !this.searching) { this.mousedown = false } else { @@ -977,13 +976,13 @@ this.search = '' } this.closeSearchOptions() + return } - // Fixed bug where no-options message could not be closed if(this.search.length === 0 && this.options.length === 0){ this.closeSearchOptions() + return } - }, /**