This repository was archived by the owner on Mar 4, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
projects/material-calendar/src/lib/calendar-panels Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 11< div class ="divbox " *ngIf ="!isLoading ">
22 < button mat-flat-button class ="slideButton "
3- *ngIf ="config.switches && mode == 'monthly' && monthsBefore != 0 && monthsAfter != 0 "
3+ *ngIf ="config.switches && mode == 'monthly' && ( monthsBefore != 0 || monthsAfter != 0) "
44 (click) ="onMonthBackward() ">
55 < span class ="material-icons ">
66 keyboard_arrow_left
1010 < mat-grid-list cols ="{{config.calendarWeek? 8 : 7}} " rowHeight ="30px ">
1111 < mat-grid-tile colspan ="{{config.calendarWeek? 8 : 7}} " rowspan ="1 ">
1212 < button mat-icon-button
13- *ngIf ="config.switches && mode == 'monthly' && monthsBefore == 0 && monthsAfter == 0 "
13+ *ngIf ="config.switches && mode == 'monthly' && ( monthsBefore == 0 && monthsAfter == 0) "
1414 (click) ="onMonthBackward() ">
1515 < span class ="material-icons ">
1616 keyboard_arrow_left
2323 </ div >
2424 < span style ="flex: 1 1 auto; "> </ span >
2525 < button mat-icon-button
26- *ngIf ="config.switches && mode == 'monthly' && monthsBefore == 0 && monthsAfter == 0 "
26+ *ngIf ="config.switches && mode == 'monthly' && ( monthsBefore == 0 && monthsAfter == 0) "
2727 (click) ="onMonthForward() ">
2828 < span class ="material-icons ">
2929 keyboard_arrow_right
5858 </ mat-grid-list >
5959 </ div >
6060 < button mat-flat-button class ="slideButton "
61- *ngIf ="config.switches && mode == 'monthly' && monthsBefore != 0 && monthsAfter != 0 "
61+ *ngIf ="config.switches && mode == 'monthly' && ( monthsBefore != 0 || monthsAfter != 0) "
6262 (click) ="onMonthForward() ">
6363 < span class ="material-icons ">
6464 keyboard_arrow_right
You can’t perform that action at this time.
0 commit comments