Announcements, Quick Links, and My Frequently used apps - not appearing in new HR WorkspaceDescriptionAnnouncements, Quick Links, and My Frequently used apps - not appearing in new HR WorkspaceSteps to Reproduce 1. Open the HR Agent Workspace.2. At the bottom of the page, the "Announcements", "Quick Links", and "My Frequently used apps" content items do not appearWorkaround1. Open the Scripted Rest Resource - 'Get Content For Workspace Instance' (part of Content Publishing plugin), which retrieves all the data for 'Announcements', 'Quick links' and 'My frequently used apps'. (sys_ws_operation_9af6cbd13b0033003585802b13efc4f3) 2. Parameter 'isUIB' needs to be passed to the method 'getContentForWorkspaceInstance' for these widgets to work on the new HR configurable workspace. Modify the operation script from: var instanceId = request.queryParams.id[0];return cd_ContentDelivery.getContentForWorkspaceInstance(instanceId); To: var instanceId = request.queryParams.id[0];var isUIB = request.queryParams.isUIB && request.queryParams.isUIB == 'true';return cd_ContentDelivery.getContentForWorkspaceInstance(instanceId, isUIB); Related Problem: PRB1588862