summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--web/react/utils/markdown.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/utils/markdown.jsx b/web/react/utils/markdown.jsx
index 1c3d498a9..e8e5798bd 100644
--- a/web/react/utils/markdown.jsx
+++ b/web/react/utils/markdown.jsx
@@ -53,7 +53,7 @@ export class MattermostMarkdownRenderer extends marked.Renderer {
}
paragraph(text) {
- text = TextFormatting.doFormatText(text, this.options)
+ text = TextFormatting.doFormatText(text, this.options);
if (this.formattingOptions.singleline) {
return `<p class="markdown__paragraph-inline">${text}</p>`;