Skip to content

Commit c243c71

Browse files
committed
TT-107 fix: resolve a comment
1 parent 43a0e3d commit c243c71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/modules/shared/components/month-picker/month-picker.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export class MonthPickerComponent implements OnInit {
4242
const monthIndex = changeAction === 'add' ? 0 : 11;
4343
this.selectMonth(monthIndex);
4444

45-
this.showArrowNext = this.selectedYear < this.currentYear ?? !this.showArrowNext;
45+
this.showArrowNext = this.selectedYear < this.currentYear ?? true;
4646
}
4747

4848
selectMonth(monthIndex: number) {

0 commit comments

Comments
 (0)