Skip to content

Commit

Permalink
fix(vue-select): apply placeholder css class to custom-select
Browse files Browse the repository at this point in the history
  • Loading branch information
devCrossNet committed Oct 9, 2021
1 parent f2a17be commit 5f5a4d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/input-and-actions/VueSelect/VueSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<div
:data-testid="'custom-' + id"
:aria-expanded="show.toString()"
:class="[$style.customSelect, $style[size]]"
:class="[$style.customSelect, placeholder && !inputValue && $style.hasPlaceholder, $style[size]]"
:tabindex="disabled ? -1 : 0"
role="listbox"
@click.stop.prevent="toggleMenu"
Expand Down

0 comments on commit 5f5a4d8

Please sign in to comment.