Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
TT-107 fix: resolve a comment
  • Loading branch information
scastillo-jp committed Jan 5, 2021
commit 6209d10adb395feb365c95fce7e3adcdf4d09e83
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class MonthPickerComponent implements OnInit {
const monthIndex = changeAction === 'add' ? 0 : 11;
this.selectMonth(monthIndex);

this.showArrowNext = this.selectedYear < this.currentYear ?? !this.showArrowNext;
this.showArrowNext = this.selectedYear < this.currentYear ?? true;
}

selectMonth(monthIndex: number) {
Expand Down