Skip to content

Commit

Permalink
fix(module:pagination): add space between page size and slash (#4038) (
Browse files Browse the repository at this point in the history
  • Loading branch information
oestrogen authored and vthinkxie committed Oct 12, 2019
1 parent 21e91e3 commit b1bba9e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/pagination/nz-pagination.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@
[ngModel]="nzPageSize"
(ngModelChange)="onPageSizeChange($event)">
<nz-option *ngFor="let option of nzPageSizeOptions"
[nzLabel]="option + locale.items_per_page"
[nzLabel]="option + ' ' + locale.items_per_page"
[nzValue]="option">
</nz-option>
<nz-option *ngIf="showAddOption"
[nzLabel]="nzPageSize + locale.items_per_page"
[nzLabel]="nzPageSize + ' ' + locale.items_per_page"
[nzValue]="nzPageSize">
</nz-option>
</nz-select>
Expand All @@ -124,4 +124,4 @@
</div>
</ng-template>
</ul>
</ng-container>
</ng-container>

0 comments on commit b1bba9e

Please sign in to comment.