Time Zone displayed as empty on WOT on hovering in calendar view on dispatcher workspaceDescriptionTime Zone displayed as empty on WOT on hovering in calendar view on dispatcher workspaceSteps to Reproduce 1.Login to emppgharti/instance which has FSM Configurable Dispatcher Workspace as v26.0.62. Impersonate user Lisa Ray and go to dispatcher workspace3. Bring any WOT to calendar view from task panel if any doesn't exist.4. once the WOT is in calendar view hover over it.5. A pop up window shows up ACTUAL BEHAVIOR: Notice the timezone is empty(see attachment)Expected behavior : Timezone shouldn't be empty as long as location have timezone set WorkaroundOverride the function CalendarEventTooltipDetails in DispatcherWorkspaceCalendarBrokerImpl by copying the same function over from DispatcherWorkspaceCalendarBrokerImplSNC and replace the following line: output["popoverFieldData"].push({label: locationRecord.time_zone.getLabel(), value: taskTZ || ''}); with var timezone = taskTZ || gs.getProperty('glide.sys.default.tz') || gs.getSession().getTimeZoneName();output["popoverFieldData"].push({label: locationRecord.getElement('time_zone').getLabel(), value: timezone});Related Problem: PRB1859468