Skip to content

Commit

Permalink
Fix #58 and #59
Browse files Browse the repository at this point in the history
  • Loading branch information
Damian Dulisz committed Jul 15, 2016
1 parent fdf1c8d commit 2adaa02
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions lib/Multiselect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
type="text"
autocomplete="off"
:placeholder="placeholder"
v-el:search="v-el:search"
v-el:search
v-if="searchable"
v-model="search"
@focus.prevent="activate()"
Expand Down Expand Up @@ -60,7 +60,7 @@
</span>
</li>
</template>
<li v-show="filteredOptions.length === 0 && search.length">
<li v-show="filteredOptions.length === 0 && search">
<span class="multiselect__option">
<slot name="noResult">No elements found. Consider changing the search query.</slot>
</span>
Expand Down
4 changes: 2 additions & 2 deletions lib/vue-multiselect.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/vue-multiselect.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-multiselect",
"version": "0.3.0",
"version": "0.3.1",
"description": "Multiselect component for vue.js",
"author": "Damian Dulisz <damian.dulisz@monterail.com>",
"private": false,
Expand Down

0 comments on commit 2adaa02

Please sign in to comment.