We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 30667d0 + e35dd37 commit 70af72eCopy full SHA for 70af72e
src/multiselectMixin.js
@@ -688,7 +688,7 @@ export default {
688
this.isOpen = false
689
/* istanbul ignore else */
690
if (this.searchable) {
691
- if (typeof this.$refs.search !== 'undefined') this.$refs.search.blur()
+ if (this.$refs.search !== null && typeof this.$refs.search !== 'undefined') this.$refs.search.blur()
692
} else {
693
if (typeof this.$el !== 'undefined') this.$el.blur()
694
}
0 commit comments