Skip to content

Commit

Permalink
fix(text): kselect placeholder text (#804)
Browse files Browse the repository at this point in the history
Updates placeholder text for KSelect auto-suggest.
  • Loading branch information
aanchalm01 authored Sep 21, 2022
1 parent f19b83a commit e86546d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/KSelect/KSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
:value="filterStr"
:label="label && overlayLabel ? label : null"
:overlay-label="overlayLabel"
:placeholder="selectedItem && appearance === 'select' ? selectedItem.label : placeholderText"
:placeholder="placeholderText"
:class="{
'cursor-default prevent-pointer-events': !filterIsEnabled,
'input-placeholder-dark has-chevron': appearance === 'select',
Expand Down

0 comments on commit e86546d

Please sign in to comment.