Skip to content

Commit

Permalink
fix(pro:search-list): fix search list tab click blank invalid bug
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk committed Apr 8, 2018
1 parent 49307e4 commit e933f9a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/app/routes/pro/list/list/list.component.html
Expand Up @@ -9,9 +9,7 @@
</div>
<ng-template #tab>
<nz-tabset [nzSelectedIndex]="pos">
<nz-tab *ngFor="let i of tabs" [nzTitle]="nzTitle">
<ng-template #nzTitle><div (click)="to(i)">{{i.tab}}</div></ng-template>
</nz-tab>
<nz-tab *ngFor="let i of tabs" [nzTitle]="i.tab" (click)="to(i)"></nz-tab>

This comment has been minimized.

Copy link
@zhou3q

zhou3q May 2, 2018

@cipchk nz-tab click event should be : (nzClick)="to(i)”

</nz-tabset>
</ng-template>
</page-header>
Expand Down

0 comments on commit e933f9a

Please sign in to comment.