Calendar icon is missing in CAB workbenchIssue Unable to see the calendar button beside the show form button, in CAB meeting. Steps To Replicate: 1. Go to Change > Change Advisory Board > CAB Workbench2. Click on a meeting that has an agenda.3. Click Open4. Click on agenda item Expected Behavior- Show Calendar icon should be beside the show form icon. Actual Behavior- Show Calendar icon is missing. ReleaseALLCauseThe change didn't have the planned start and end dates.ResolutionBelow is the widget where the icon is shown, CAB Workbench - Change Tab -> https://instance_name.service-now.com/sp_widget.do?sys_id=a233c3669f531200b18a7feea57fcfcc Below is the code in widget which checks whether to show the calendar icon or no. $scope.hideCalendar = function() {var hideCalendarViewButton = $scope.change && (($scope.change.start_date && $scope.change.start_date.value === "") || ($scope.change.end_date && $scope.change.end_date.value === ""));if (hideCalendarViewButton && $scope.tab.selectedTabId === CAB.CAL_TAB)$scope.tab.select(CAB.FORM_TAB);return hideCalendarViewButton;};The above code is checking if the change is having a planned start and end date and if it is blank then, the calendar button will be hidden.Related LinksFor more details refer below link- CAB WORKBECNH