Skip to content

Commit

Permalink
fix: Pagination QuickJumper bug #37
Browse files Browse the repository at this point in the history
  • Loading branch information
hsuanxyz committed Aug 16, 2017
1 parent 32234e4 commit a122238
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/pagination/nz-pagination.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export class NzPaginationComponent {
if (value > this._lastIndex || value < this._firstIndex) {
return;
}
this._current = value;
this._current = Number(value);
this._buildIndexes();
};

Expand Down

0 comments on commit a122238

Please sign in to comment.