replace newlines in desktop notif with spaces instead of removing them (#5361)
parent
9fc9d3554d
commit
b88cae6c6b
|
@ -31,6 +31,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…
Reference in New Issue