Fix the notification bug with newlines

signup-info-prompt
Ondřej Hruška 2017-10-12 21:28:17 +02:00
parent 6a2b1ba91e
commit df626fdd43
No known key found for this signature in database
GPG Key ID: 2C5FD5035250423D
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;
};