Skip to content

Commit

Permalink
fix: empty space on combo and multi (#967)
Browse files Browse the repository at this point in the history
Co-authored-by: Lee Chase <lee.chase@uk.ibm.com>
  • Loading branch information
lee-chase and lee-chase authored Jul 28, 2020
1 parent 92d394a commit 14e82ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/components/cv-combo-box/cv-combo-box.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
ref="input"
:class="[
`${carbonPrefix}--text-input`,
{ [`${carbonPrefix}--text-input--empty`]: dataInput && dataInput.length === 0 },
{ [`${carbonPrefix}--text-input--empty`]: !filter || filter.length === 0 },
]"
:aria-controls="uid"
aria-autocomplete="list"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
ref="input"
:class="[
`${carbonPrefix}--text-input`,
{ [`${carbonPrefix}--text-input--empty`]: dataInput && dataInput.length === 0 },
{ [`${carbonPrefix}--text-input--empty`]: !filter || filter.length === 0 },
]"
:aria-controls="uid"
aria-autocomplete="list"
Expand Down

0 comments on commit 14e82ec

Please sign in to comment.