The unavailable schedules of my resources are dynamic. I’ve already defined them through the “unavailable” property of the resources.
However, there is a case where a resource has the following unavailable schedules:
{start: '2024-02-21T00:00:00.000', end: '2024-02-21T11:00:00.000'}
{start: '2024-02-21T23:00:00.000', end: '2024-02-21T23:59:59.000'}
The first schedule is working fine, the hours are disabled from 00h to 11h.
But for the second, only the first cell of 23h (im using cellDuration: 30) is disabled. The last 30 minutes are not (from 23h30 to 00h).
I’ve already tried to change '2024-02-21T23:59:59.000' to '2024-02-21T24:00:00.000' or '2024-02-22T00:00:00.000' but it’s still not working.
How can i fix this, making both cells disabled from 23h to 00h?