Browse Source

Display custom emoji in bio field names (#11350)

Already displayed in public pages, but not WebUI
pull/4/head
ThibG 4 years ago
committed by Eugen Rochko
parent
commit
4bd58b7f2d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/mastodon/actions/importer/normalizer.js

+ 1
- 1
app/javascript/mastodon/actions/importer/normalizer.js 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),
}));

Loading…
Cancel
Save