Skip to content

Commit

Permalink
fix(module:st): should clean filter style when not filter (#303)
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk committed Dec 1, 2018
1 parent 839147e commit 96430d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/abc/table/table.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<th *ngFor="let c of _columns; let index=index" [nzWidth]="c.width" [nzLeft]="c._left" [nzRight]="c._right" [ngClass]="c.className"
[attr.colspan]="c.colSpan" [attr.data-col]="c.indexKey"
[nzShowSort]="c._sort.enabled" [nzSort]="c._sort.default" (nzSortChange)="sort(c, index, $event)"
nzCustomFilter>
[nzCustomFilter]="c.filter">
<ng-template #renderTitle [ngTemplateOutlet]="c.__renderTitle" [ngTemplateOutletContext]="{$implicit: c, index: index }"></ng-template>
<ng-container *ngIf="!c.__renderTitle; else renderTitle">
<ng-container [ngSwitch]="c.type">
Expand Down

0 comments on commit 96430d1

Please sign in to comment.