Skip to content

Commit

Permalink
fix(kit): InputDateRange fix showing same month twice when min is…
Browse files Browse the repository at this point in the history
… later than given month (#4569)
  • Loading branch information
waterplea authored Jun 1, 2023
1 parent 28396c8 commit 0573b29
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
class="t-border"
[min]="min"
[max]="max"
[month]="userViewedMonthSecond"
[month]="userViewedMonthSecond.monthSameOrBefore(min) ? (min | tuiMapper : monthOffset : 1) : userViewedMonthSecond"
[markerHandler]="markerHandler"
[minViewedMonth]="cappedUserViewedMonthFirst | tuiMapper : monthOffset : 1"
[value]="value"
Expand Down

0 comments on commit 0573b29

Please sign in to comment.