Question

Remove feed from the agent desktop section

Hi guys,

How can we remove the feed section from the Agent Desktop section? We really don't need it within our workflow

Like

1 comments

Hi,

You will have to remove the 'centerContainer' element in the 'OperatorSingleWindowPage'. Simply create a replacing client module with the 'OperatorSingleWindowPage' specified as parent, and insert the following code:

define("OperatorSingleWindowPage", [],
	function() {
		return {
			messages: {},
			mixins: {},
			attributes: {},
			methods: {},
			diff: [
				{
					"operation": "remove",
					"name": "centerContainer"
				}
			]
		};
	}
);

 

Show all comments