Fix newlines-to-spaces functionality (tootsuite pr #6158)
This commit is contained in:
parent
8a0e4bb9a4
commit
7f4374d97d
|
@ -42,7 +42,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;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue