Skip to content

Commit

Permalink
fix(module:select): change order for clear and arrow (#6245)
Browse files Browse the repository at this point in the history
close #5989
  • Loading branch information
人可 committed Dec 31, 2020
1 parent ca1b861 commit c822073
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions components/select/select.component.ts
Expand Up @@ -94,17 +94,17 @@ export type NzSelectSizeType = 'large' | 'default' | 'small';
(deleteItem)="onItemDelete($event)"
(keydown)="onKeyDown($event)"
></nz-select-top-control>
<nz-select-clear
*ngIf="nzAllowClear && !nzDisabled && listOfValue.length"
[clearIcon]="nzClearIcon"
(clear)="onClearSelection()"
></nz-select-clear>
<nz-select-arrow
*ngIf="nzShowArrow"
[loading]="nzLoading"
[search]="nzOpen && nzShowSearch"
[suffixIcon]="nzSuffixIcon"
></nz-select-arrow>
<nz-select-clear
*ngIf="nzAllowClear && !nzDisabled && listOfValue.length"
[clearIcon]="nzClearIcon"
(clear)="onClearSelection()"
></nz-select-clear>
<ng-template
cdkConnectedOverlay
nzConnectedOverlay
Expand Down

0 comments on commit c822073

Please sign in to comment.