diff --git a/web/react/utils/utils.jsx b/web/react/utils/utils.jsx
index ce803c2fb4..36fb200e6b 100644
--- a/web/react/utils/utils.jsx
+++ b/web/react/utils/utils.jsx
@@ -235,7 +235,7 @@ module.exports.extractLinks = function(text) {
var links = []
for (var i = 0; i < matches.length; i++) {
- links.push(matches[i].link)
+ links.push(matches[i].link);
}
return { "links": links, "text": text };
@@ -450,9 +450,9 @@ module.exports.textToJsx = function(text, options) {
inner.push({prefix}@{name}{suffix} );
} else if (testUrlMatch(word).length) {
var match = testUrlMatch(word)[0];
- var link = match.link
+ var link = match.link;
- var prefix = word.substring(0,word.indexOf(match.text))
+ var prefix = word.substring(0,word.indexOf(match.text));
var suffix = word.substring(word.indexOf(match.text)+match.text.length);
inner.push({prefix}{match.text}{suffix} );