Fix newlines-to-spaces functionality (#6158)

yay for regexes, amirite
This commit is contained in:
Noiob 2018-01-02 19:35:24 +01:00 committed by Eugen Rochko
parent 04ecf44c2f
commit 94230fe565

View file

@ -31,7 +31,7 @@ const fetchRelatedRelationships = (dispatch, notifications) => {
const unescapeHTML = (html) => {
const wrapper = document.createElement('div');
html = html.replace(/<br \/>|<br>|\n/, ' ');
html = html.replace(/<br \/>|<br>|\n/g, ' ');
wrapper.innerHTML = html;
return wrapper.textContent;
};