2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00

Proposed fix for #648 (#664)

The components can't focus and the dropdown can't close when clicking 'Sorry, no matching options' 
https://github.com/sagalbot/vue-select/issues/648
This commit is contained in:
Pyro979
2018-12-05 13:19:30 -05:00
committed by Jeff Sagal
parent 582c370ed9
commit 623df819ae
+1 -1
View File
@@ -377,7 +377,7 @@
</slot>
</a>
</li>
<li v-if="!filteredOptions.length" class="no-options">
<li v-if="!filteredOptions.length" class="no-options" @mousedown.stop="">
<slot name="no-options">Sorry, no matching options.</slot>
</li>
</ul>