Use Unified Profiles Container capabilities to programmatically customize your agent experiences in Unified Profiles.
With the UnifiedProfilesContainer.ProfileTabs
component, you can:
All normal programmability actions (add, remove, replace) are also available for this component and its content.
Visit the docs to learn more about how to update the Flex UI programmatically.
To reorder an in-house tab first in the container and rename it, add the following code to your plugin:
_12Flex.UnifiedProfilesContainer.ProfileTabs.defaultProps.crmViewTabProps = {_12 label: "Custom CRM",_12 index: 1_12 };_12_12 Flex.UnifiedProfilesContainer.ProfileTabs.defaultProps.timelineViewTabProps = {_12 index: 2_12 };_12_12 Flex.UnifiedProfilesContainer.ProfileTabs.defaultProps.profileViewTabProps = {_12 index: 3_12 };
Note that you must set all container tabs together to reorder them.