You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Beginning with version 6.4.1 (and latest 6.4.4), the picker does not add the 'active' class to the clicked date anymore. This results in selected dates not being highlighted anymore. Downgrading to 6.2.9 revealed to me that my code is working and that the bug started in 6.4.1
@Eonasdan I think you flipped the boolean there. Instead of !this.optionsStore.options.multipleDates &&
it should probably be this.optionsStore.options.multipleDates &&
?
StackBlitz fork
none
What operating system(s) are you seeing the problem on?
Windows
What browser(s) are you seeing the problem on?
Chrome
What version of are you using? You can find this information from the sample StackBlitz.
6.4.4
What your browser's locale? You can find this information from the sample StackBlitz.
de-DE
The text was updated successfully, but these errors were encountered:
Prerequisites
Describe the issue
Beginning with version 6.4.1 (and latest 6.4.4), the picker does not add the 'active' class to the clicked date anymore. This results in selected dates not being highlighted anymore. Downgrading to 6.2.9 revealed to me that my code is working and that the bug started in 6.4.1
Looking at the 6.4.1 diff, I can see this change 7b4622c#diff-2ba219d378add7c5eec0f4fed2e1599d032c4282b5b7546ac6aa7a1982c29890R109
@Eonasdan I think you flipped the boolean there. Instead of
!this.optionsStore.options.multipleDates &&
it should probably be
this.optionsStore.options.multipleDates &&
?
StackBlitz fork
none
What operating system(s) are you seeing the problem on?
Windows
What browser(s) are you seeing the problem on?
Chrome
What version of are you using? You can find this information from the sample StackBlitz.
6.4.4
What your browser's locale? You can find this information from the sample StackBlitz.
de-DE
The text was updated successfully, but these errors were encountered: