chatSession.incomingItemDecorator = function()

in customChatWidget/src/containers/ChatWidget/index.js [32:41]


        chatSession.incomingItemDecorator = function (item) {
            if ([chatParties.SYSTEM_MESSAGE].indexOf(item.displayName) !== -1) {
                item.displayName = "";
            }

            if ([chatParties.BOT].indexOf(item.displayName) !== -1) {
                item.displayName = "";
            }
            return item;
        }