Skip to content

Commit

Permalink
Merge 99c5ce6 into c432de4
Browse files Browse the repository at this point in the history
  • Loading branch information
kkovarik committed Jul 13, 2018
2 parents c432de4 + 99c5ce6 commit bd0586e
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ class Message extends Component {
{ t: 'Business error overview', v: message.businessError },
{ t: 'ID of parent message', v: message.parentMsgId },
{ t: 'Content (body) of message', v: <SyntaxHighlighter style={codeStyle} >{message.body}</SyntaxHighlighter > },
{ t: 'Whole incoming message', v: <SyntaxHighlighter style={codeStyle} >{message.envelope}</SyntaxHighlighter > },
{ t: 'Whole incoming message',
v: <SyntaxHighlighter style={codeStyle} >
{(message.envelope !== null && message.envelope !== undefined) ? message.envelope : '-'}
</SyntaxHighlighter > },
{ t: 'Custom data', v: message.customData }
].map((item) => {
if (typeof item.v === 'boolean') {
Expand Down

0 comments on commit bd0586e

Please sign in to comment.