Skip to content

Commit

Permalink
fix: don't stop mousedown event on no-option slot (#1117)
Browse files Browse the repository at this point in the history
  • Loading branch information
diasbruno authored Mar 19, 2020
1 parent ca4f3c4 commit 4c7e1e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
{{ getOptionLabel(option) }}
</slot>
</li>
<li v-if="filteredOptions.length === 0" class="vs__no-options" @mousedown.stop="">
<li v-if="filteredOptions.length === 0" class="vs__no-options">
<slot name="no-options" v-bind="scope.noOptions">Sorry, no matching options.</slot>
</li>
<slot name="list-footer" v-bind="scope.listFooter" />
Expand Down

0 comments on commit 4c7e1e0

Please sign in to comment.