Skip to content

Commit

Permalink
fix(module:datepicker): end decade cell text (#301)
Browse files Browse the repository at this point in the history
close #300
  • Loading branch information
giscafer authored and wilsoncook committed Sep 16, 2017
1 parent cd84e47 commit d16061f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/datepicker/nz-datepicker.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ import { ConnectionPositionPair } from '../core/overlay/index';
<a class="ant-calendar-year-panel-year" (click)="_setShowYear(_startDecade+td,$event)">{{_startDecade + td}}</a>
</td>
<td class="ant-calendar-year-panel-cell ant-calendar-year-panel-next-decade-cell" *ngIf="td=='end'">
<a class="ant-calendar-year-panel-year" (click)="_nextDecade()">{{_startDecade + 1}}</a>
<a class="ant-calendar-year-panel-year" (click)="_nextDecade()">{{_startDecade + 10}}</a>
</td>
</ng-template>
</tr>
Expand Down

0 comments on commit d16061f

Please sign in to comment.