diff --git a/resources/github-comment-markdown.template b/resources/github-comment-markdown.template index 283dfbca1..2f0efc40e 100644 --- a/resources/github-comment-markdown.template +++ b/resources/github-comment-markdown.template @@ -100,7 +100,7 @@ ${errorStackTrace} <% description = (c?.displayDescription && c?.displayDescription != 'null') ? "
  • Description: ${c?.displayDescription}" : ''%> <% duration = (c?.durationInMillis >= 0 ) ? "Took ${Math.round(c.durationInMillis/1000/60)} min ${Math.round(c.durationInMillis/1000)%60} sec" : ''%> <% url = (c?.url && c?.url != 'null') ? ". View more details on here" : ''%> -##### `${c?.displayName && c?.displayName != 'null' ? c?.displayName : ''}` +##### `${c?.displayName && c?.displayName != 'null' ? c?.displayName.replaceAll('\\n', '') : ''}`