Skip to content

Commit

Permalink
fix: Error after tabbing to the dropdown field (iamstevendao#460)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniil4udo committed May 6, 2024
1 parent 2798ab9 commit 3bcde46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/vue-tel-input.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<span class="vti__dropdown-arrow">{{ data.open ? "" : "" }}</span>
</slot>
</span>
<ul v-if="data.open"
<ul v-show="data.open"
ref="refList"
:class="['vti__dropdown-list', data.dropdownOpenDirection]"
role="listbox">
Expand Down

0 comments on commit 3bcde46

Please sign in to comment.