Skip to content

Commit

Permalink
feat: search in template select
Browse files Browse the repository at this point in the history
  • Loading branch information
richardlt committed Jan 19, 2021
1 parent 3132fb2 commit b5a95c4
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -32,7 +32,8 @@
<nz-form-item>
<nz-form-label>Template</nz-form-label>
<nz-form-control>
<nz-select [ngModel]="pagination.template" (ngModelChange)="paginationTemplateChange($event)">
<nz-select nzShowSearch [ngModel]="pagination.template"
(ngModelChange)="paginationTemplateChange($event)">
<nz-option nzValue="" nzLabel="All"></nz-option>
<nz-option *ngFor="let t of templates" [nzValue]="t.name" [nzLabel]="t.name"></nz-option>
</nz-select>
Expand Down

0 comments on commit b5a95c4

Please sign in to comment.