Display custom emoji in bio field names (#11350)

Already displayed in public pages, but not WebUI
This commit is contained in:
ThibG
2019-08-06 21:52:25 +02:00
committed by Eugen Rochko
parent 16f348431b
commit af410c0706
@@ -22,7 +22,7 @@ export function normalizeAccount(account) {
if (account.fields) {
account.fields = account.fields.map(pair => ({
...pair,
name_emojified: emojify(escapeTextContentForBrowser(pair.name)),
name_emojified: emojify(escapeTextContentForBrowser(pair.name), emojiMap),
value_emojified: emojify(pair.value, emojiMap),
value_plain: unescapeHTML(pair.value),
}));