Skip to content

Commit

Permalink
fix(transitions): add key to dropdown ul (#1230)
Browse files Browse the repository at this point in the history
  • Loading branch information
sagalbot committed Jul 9, 2020
1 parent 4360f00 commit dab5684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Select.vue
Expand Up @@ -53,7 +53,7 @@
</div>
</div>
<transition :name="transition">
<ul ref="dropdownMenu" v-if="dropdownOpen" :id="`vs${uid}__listbox`" class="vs__dropdown-menu" role="listbox" @mousedown.prevent="onMousedown" @mouseup="onMouseUp" v-append-to-body>
<ul ref="dropdownMenu" v-if="dropdownOpen" :id="`vs${uid}__listbox`" :key="`vs${uid}__listbox`" class="vs__dropdown-menu" role="listbox" @mousedown.prevent="onMousedown" @mouseup="onMouseUp" v-append-to-body>
<slot name="list-header" v-bind="scope.listHeader" />
<li
role="option"
Expand Down

0 comments on commit dab5684

Please sign in to comment.