[Glitch] Display custom emoji in bio field names

Port 4bd58b7f2d to glitch-soc
remotes/1698178055505214576/signup-info-prompt
Thibaut Girka 2019-07-23 10:33:25 +02:00
parent 8a89a2b0f4
commit cd8763b600
1 changed files with 1 additions and 1 deletions

View File

@ -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),
}));