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
00:55 Mar 11, 2017
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