Skip to content

Commit

Permalink
Fixed #5275
Browse files Browse the repository at this point in the history
  • Loading branch information
Çağatay Çivici authored and Çağatay Çivici committed Mar 9, 2018
1 parent de25084 commit 38fa503
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/showcase/components/dropdown/dropdowndemo.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ <h3>Editable</h3>
<p>Selected Car: {{selectedCar1 || 'none'}}</p>

<h3>Content with Filters</h3>
<p-dropdown [options]="cars" [(ngModel)]="selectedCar2" [style]="{'width':'150px'}" filter="true">
<p-dropdown [options]="cars" [(ngModel)]="selectedCar2" [style]="{'width':'150px'}" filter="true" [showClear]="true">
<ng-template let-item pTemplate="selectedItem">
<img src="assets/showcase/images/demo/car/{{item.label}}.png" style="width:16px;vertical-align:middle" />
<span style="vertical-align:middle">{{item.label}}</span>
Expand Down
4 changes: 2 additions & 2 deletions src/app/showcase/components/table/tabledemo.html
Original file line number Diff line number Diff line change
Expand Up @@ -640,11 +640,11 @@ <h3>Paginator</h3>
&lt;/td&gt;
&lt;/tr&gt;
&lt;/ng-template&gt;
&lt;ng-template pTemplate="paginatorLeft" let-state&gt;
&lt;ng-template pTemplate="paginatorleft" let-state&gt;
&#123;&#123;state.first&#125;&#125;
&lt;button type="button" pButton icon="fa-refresh"&gt;&lt;/button&gt;
&lt;/ng-template&gt;
&lt;ng-template pTemplate="paginatorRight"&gt;
&lt;ng-template pTemplate="paginatorright"&gt;
&lt;button type="button" pButton icon="fa-cloud-upload"&gt;&lt;/button&gt;
&lt;/ng-template&gt;
&lt;/p-table&gt;
Expand Down

0 comments on commit 38fa503

Please sign in to comment.