Skip to content

Commit

Permalink
fix(module:select): fix single selection choice content display issues (
Browse files Browse the repository at this point in the history
#3802)

close #3710
  • Loading branch information
hungtcs authored and vthinkxie committed Jul 16, 2019
1 parent aaa5852 commit 4dd93e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/select/nz-select-top-control.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
[attr.title]="nzSelectService.listOfCachedSelectedOption[0]?.nzLabel"
[ngStyle]="selectedValueStyle">
<ng-container *nzStringTemplateOutlet="nzCustomTemplate; context: { $implicit: nzSelectService.listOfCachedSelectedOption[0] }">
<div class="ant-select-selection__choice__content">{{ nzSelectService.listOfCachedSelectedOption[0]?.nzLabel }}</div>
<ng-container>{{ nzSelectService.listOfCachedSelectedOption[0]?.nzLabel }}</ng-container>
</ng-container>
</div>
<!--show search-->
Expand Down

0 comments on commit 4dd93e6

Please sign in to comment.