From 5b0d13c1fcc8de83b7fc6fa8d5be02297e9f2fb6 Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Sat, 27 Aug 2016 23:59:55 +0100 Subject: [PATCH] switch to namespaced CSS --- src/HtmlUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HtmlUtils.js b/src/HtmlUtils.js index 6a8d903df8..d309ce1950 100644 --- a/src/HtmlUtils.js +++ b/src/HtmlUtils.js @@ -49,7 +49,7 @@ export function unicodeToImage(str) { alt = (emojione.unicodeAlt) ? emojione.convert(unicode.toUpperCase()) : mappedUnicode[unicode]; const title = mappedUnicode[unicode]; - replaceWith = `${alt}`; + replaceWith = `${alt}`; return replaceWith; } });