Fix newlines-to-spaces functionality (tootsuite pr #6158)
parent
8a0e4bb9a4
commit
7f4374d97d
|
@ -42,7 +42,7 @@ const fetchRelatedRelationships = (dispatch, notifications) => {
|
||||||
|
|
||||||
const unescapeHTML = (html) => {
|
const unescapeHTML = (html) => {
|
||||||
const wrapper = document.createElement('div');
|
const wrapper = document.createElement('div');
|
||||||
html = html.replace(/<br \/>|<br>|\n/, ' ');
|
html = html.replace(/<br \/>|<br>|\n/g, ' ');
|
||||||
wrapper.innerHTML = html;
|
wrapper.innerHTML = html;
|
||||||
return wrapper.textContent;
|
return wrapper.textContent;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue