Fix the notification bug with newlines

lolsob-rspec
Ondřej Hruška 2017-10-12 21:28:17 +02:00
parent 227824429b
commit e960e2c1d2
1 changed files with 1 additions and 0 deletions

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