Fix the notification bug with newlines

This commit is contained in:
Ondřej Hruška
2017-10-12 21:28:17 +02:00
parent 6a2b1ba91e
commit df626fdd43

View File

@ -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;
};