Skip to content

Commit b538fb4

Browse files
committed
don't require onSearch to be true to display spinner
1 parent afdc4da commit b538fb4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-select",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"description": "A native Vue.js component that provides similar functionality to Select2 without the overhead of jQuery.",
55
"author": "Jeff Sagal <sagalbot@gmail.com>",
66
"private": false,

src/components/Select.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@
205205
<i v-el:open-indicator role="presentation" class="open-indicator"></i>
206206

207207
<slot name="spinner">
208-
<div class="spinner" v-show="onSearch && loading">Loading...</div>
208+
<div class="spinner" v-show="loading">Loading...</div>
209209
</slot>
210210
</div>
211211

0 commit comments

Comments
 (0)