Skip to content

Commit

Permalink
Fixed #2286 - MultiSelect v2 | Filter autocomplete attribute support
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Mar 10, 2022
1 parent d9f7e80 commit ac313ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/multiselect/MultiSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</div>
<div class="p-multiselect-trigger">
<slot name="indicator">
<span class="p-multiselect-trigger-icon pi pi-chevron-down"></span>
<span class="p-multiselect-trigger-icon pi pi-chevron-down"></span>
</slot>
</div>
<transition name="p-connected-overlay" @enter="onOverlayEnter" @leave="onOverlayLeave">
Expand All @@ -37,7 +37,7 @@
</div>
</div>
<div v-if="filter" class="p-multiselect-filter-container">
<input type="text" ref="filterInput" v-model="filterValue" class="p-multiselect-filter p-inputtext p-component" :placeholder="filterPlaceholder" @input="onFilterChange">
<input type="text" ref="filterInput" v-model="filterValue" class="p-multiselect-filter p-inputtext p-component" autoComplete="on" :placeholder="filterPlaceholder" @input="onFilterChange">
<span class="p-multiselect-filter-icon pi pi-search"></span>
</div>
<button class="p-multiselect-close p-link" @click="onCloseClick" type="button" v-ripple>
Expand Down

0 comments on commit ac313ef

Please sign in to comment.