Skip to content

Commit

Permalink
fix(module:cascader): sync class name with ant-design
Browse files Browse the repository at this point in the history
  • Loading branch information
rppig committed Nov 9, 2020
1 parent 22aea7e commit 65d8492
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/cascader/cascader.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ const defaultDisplayRender = (labels: string[]) => labels.join(' / ');
<i *ngIf="isLoading" nz-icon nzType="loading" class="ant-cascader-picker-arrow"></i>
<span
class="ant-cascader-picker-label"
[class.ant-cascader-show-search]="!!nzShowSearch"
[class.ant-focusd]="!!nzShowSearch && isFocused && !inputValue"
[class.ant-cascader-picker-show-search]="!!nzShowSearch"
[class.ant-cascader-picker-focused]="!!nzShowSearch && isFocused && !inputValue"
>
<ng-container *ngIf="!isLabelRenderTemplate; else labelTemplate">{{ labelRenderText }}</ng-container>
<ng-template #labelTemplate>
Expand Down

0 comments on commit 65d8492

Please sign in to comment.