We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f9e550 commit 5392fdeCopy full SHA for 5392fde
components/calendar/nz-calendar-header.component.html
@@ -1,9 +1,9 @@
1
-<nz-select class="ant-fullcalendar--year-select" [nzSize]="size"
+<nz-select class="ant-fullcalendar-year-select" [nzSize]="size"
2
[ngModel]="activeYear" (ngModelChange)="yearChange.emit($event)">
3
<nz-option *ngFor="let year of years" [nzLabel]="year.label" [nzValue]="year.value"></nz-option>
4
</nz-select>
5
6
-<nz-select *ngIf="mode === 'month'" class="ant-fullcalendar--year-select" [nzSize]="size"
+<nz-select *ngIf="mode === 'month'" class="ant-fullcalendar-month-select" [nzSize]="size"
7
[ngModel]="activeMonth" (ngModelChange)="monthChange.emit($event)">
8
<nz-option *ngFor="let month of months" [nzLabel]="month.label" [nzValue]="month.value"></nz-option>
9
0 commit comments