Details
-
Fix
-
Status: Released (View Workflow)
-
Blocker
-
Resolution: Fixed
-
1.12, 1.12.1
-
None
Description
Current Situation
The calandar preview in the "Calendar edit"-Dialog calls the ./calendar/dates api to get the dates based on the configured rules of the calendar.
We could observe that sometimes the day before is marked in the preview.
For example a calendar with a rule for each Friday is configured then the ./calendar/dates api sends correctly
{
"dates": [
"2018-01-05",
"2018-01-12",
"2018-01-19",
"2018-01-26",
"2018-02-02",
"2018-02-09",
"2018-02-16",
"2018-02-23",
"2018-03-02",
"2018-03-09",
"2018-03-16",
"2018-03-23",
"2018-03-30",
"2018-04-06",
"2018-04-13",
"2018-04-20",
"2018-04-27",
"2018-05-04",
"2018-05-11",
"2018-05-18",
"2018-05-25",
"2018-06-01",
"2018-06-08",
"2018-06-15",
"2018-06-22",
"2018-06-29",
"2018-07-06",
"2018-07-13",
"2018-07-20",
"2018-07-27",
"2018-08-03",
"2018-08-10",
"2018-08-17",
"2018-08-24",
"2018-08-31",
"2018-09-07",
"2018-09-14",
"2018-09-21",
"2018-09-28",
"2018-10-05",
"2018-10-12",
"2018-10-19",
"2018-10-26",
"2018-11-02",
"2018-11-09",
"2018-11-16",
"2018-11-23",
"2018-11-30",
"2018-12-07",
"2018-12-14",
"2018-12-21",
"2018-12-28"],
"deliveryDate": "2018-03-14T23:38:54.974Z",
"withExcludes": []
}
but the preview shows

Desired Behavior
The calendar preview should show the days from the ./calendar/dates api response.