Use plaintext value for field value tooltips in web UI (#7388)

Fix #7383
This commit is contained in:
Eugen Rochko
2018-05-07 09:30:38 +02:00
committed by GitHub
parent db012b57c2
commit d185f3ddaf
4 changed files with 10 additions and 8 deletions

View File

@ -0,0 +1,6 @@
export const unescapeHTML = (html) => {
const wrapper = document.createElement('div');
html = html.replace(/<br \/>|<br>|\n/g, ' ');
wrapper.innerHTML = html;
return wrapper.textContent;
};