nathanreyes / v-calendar

An elegant calendar and datepicker plugin for Vue.
https://vcalendar.io
MIT License
4.32k stars 840 forks source link

Overlapping dates bugged after update to 3.0.3 #1342

Open AlEsGoGit opened 1 year ago

AlEsGoGit commented 1 year ago

With this array of dates...

[
    {
        "start": "2024-05-07T22:00:00.000Z",
        "end": "2024-05-07T22:00:00.000Z",
        "weekdays": [
            4
        ]
    },
    {
        "start": "2024-04-30T22:00:00.000Z",
        "end": "2024-05-24T22:00:00.000Z",
        "weekdays": [
            6
        ]
    }
]

I expected to have only one attribute for the 2024-05-07. This is how it worked before the update.

Now i have two attributes in 2024-05-07, so the painted badge is duplicated. The same attribute, with same data and key appears duplicated for that day.