Fix date picker

This commit is contained in:
Ilya Laktyushin 2021-02-18 13:59:22 +04:00
parent 532dda0388
commit 24683f80d8

View File

@ -209,6 +209,9 @@ public final class DatePickerNode: ASDisplayNode {
started = true
}
weekday += 1
if weekday > 7 {
weekday = 1
}
let textNode = self.dateNodes[i]
if started && !ended {