Skip to content

Commit

Permalink
fix: empty space in combo and multi (#963)
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 25, 2020
1 parent 17c5435 commit 229759e
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 @@ -44,7 +44,7 @@
>
<input
ref="input"
:class="[`${carbonPrefix}--text-input`]"
:class="[`${carbonPrefix}--text-input`, { [`${carbonPrefix}--text-input--empty`]: dataInput.length === 0 }]"
:aria-controls="uid"
aria-autocomplete="list"
role="combobox"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
<template v-else>
<input
ref="input"
:class="`${carbonPrefix}--text-input`"
:class="[`${carbonPrefix}--text-input`, { [`${carbonPrefix}--text-input--empty`]: dataInput.length === 0 }]"
:aria-controls="uid"
aria-autocomplete="list"
role="combobox"
Expand Down

0 comments on commit 229759e

Please sign in to comment.