Use plaintext value for field value tooltips in web UI (#7388)
Fix #7383
This commit is contained in:
parent
db012b57c2
commit
d185f3ddaf
4 changed files with 10 additions and 8 deletions
|
@ -1,5 +1,6 @@
|
|||
import escapeTextContentForBrowser from 'escape-html';
|
||||
import emojify from '../../features/emoji/emoji';
|
||||
import { unescapeHTML } from '../../utils/html';
|
||||
|
||||
const domParser = new DOMParser();
|
||||
|
||||
|
@ -22,6 +23,7 @@ export function normalizeAccount(account) {
|
|||
...pair,
|
||||
name_emojified: emojify(escapeTextContentForBrowser(pair.name)),
|
||||
value_emojified: emojify(pair.value, emojiMap),
|
||||
value_plain: unescapeHTML(pair.value),
|
||||
}));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue