summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPat Lathem <patl@codero.com>2015-10-21 14:52:19 -0500
committerPat Lathem <patl@codero.com>2015-10-21 14:52:19 -0500
commit8eb2c0266c562d43805cb5a30a04102c7e728924 (patch)
treea0733df7e3fea3b4f187cd9af153c6a8e5dc3dde
parent9dd7a5e01e08da947b638a9c89c872a28e8f56df (diff)
downloadchat-8eb2c0266c562d43805cb5a30a04102c7e728924.tar.gz
chat-8eb2c0266c562d43805cb5a30a04102c7e728924.tar.bz2
chat-8eb2c0266c562d43805cb5a30a04102c7e728924.zip
Missing semicolon
-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>`;