Skip to content

Commit 5392fde

Browse files
trotylvthinkxie
authored andcommitted
fix(module:calendar): use correct classNames (#1118)
1 parent 4f9e550 commit 5392fde

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: components/calendar/nz-calendar-header.component.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<nz-select class="ant-fullcalendar--year-select" [nzSize]="size"
1+
<nz-select class="ant-fullcalendar-year-select" [nzSize]="size"
22
[ngModel]="activeYear" (ngModelChange)="yearChange.emit($event)">
33
<nz-option *ngFor="let year of years" [nzLabel]="year.label" [nzValue]="year.value"></nz-option>
44
</nz-select>
55

6-
<nz-select *ngIf="mode === 'month'" class="ant-fullcalendar--year-select" [nzSize]="size"
6+
<nz-select *ngIf="mode === 'month'" class="ant-fullcalendar-month-select" [nzSize]="size"
77
[ngModel]="activeMonth" (ngModelChange)="monthChange.emit($event)">
88
<nz-option *ngFor="let month of months" [nzLabel]="month.label" [nzValue]="month.value"></nz-option>
99
</nz-select>

0 commit comments

Comments
 (0)