diff --git a/web/react/utils/markdown.jsx b/web/react/utils/markdown.jsx index 347024e1a2..c6ffb18713 100644 --- a/web/react/utils/markdown.jsx +++ b/web/react/utils/markdown.jsx @@ -31,7 +31,7 @@ export class MattermostMarkdownRenderer extends marked.Renderer { if (title) { output += ' title="' + title + '"'; } - output += '>' + text + ''; + output += ' target="_blank">' + text + ''; return output; }