Fix the notification bug with newlines

th-downstream
Ondřej Hruška 7 years ago
parent 227824429b
commit e960e2c1d2

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

Loading…
Cancel
Save