Skip to content

Commit

Permalink
fix(combobox): add chevron icon at end of input regardless of selecti…
Browse files Browse the repository at this point in the history
…on mode (#3055)
  • Loading branch information
y0n4 committed Sep 30, 2021
1 parent 124e505 commit 8b153f6
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/components/calcite-combobox/calcite-combobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -943,11 +943,9 @@ export class CalciteCombobox implements LabelableComponent {

renderIconEnd(): VNode {
return (
this.selectionMode === "single" && (
<span class="icon-end">
<calcite-icon icon="chevron-down" scale="s" />
</span>
)
<span class="icon-end">
<calcite-icon icon="chevron-down" scale="s" />
</span>
);
}

Expand Down

0 comments on commit 8b153f6

Please sign in to comment.