2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-19 09:50:33 +03:00

don't require onSearch to be true to display spinner

This commit is contained in:
Jeff Sagal
2016-08-15 16:51:40 -07:00
parent afdc4da785
commit b538fb43f2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "vue-select", "name": "vue-select",
"version": "1.3.2", "version": "1.3.3",
"description": "A native Vue.js component that provides similar functionality to Select2 without the overhead of jQuery.", "description": "A native Vue.js component that provides similar functionality to Select2 without the overhead of jQuery.",
"author": "Jeff Sagal <sagalbot@gmail.com>", "author": "Jeff Sagal <sagalbot@gmail.com>",
"private": false, "private": false,
+1 -1
View File
@@ -205,7 +205,7 @@
<i v-el:open-indicator role="presentation" class="open-indicator"></i> <i v-el:open-indicator role="presentation" class="open-indicator"></i>
<slot name="spinner"> <slot name="spinner">
<div class="spinner" v-show="onSearch && loading">Loading...</div> <div class="spinner" v-show="loading">Loading...</div>
</slot> </slot>
</div> </div>