[Glitch] Use plaintext value for field value tooltips in web UI

Port d185f3ddaf to glitch-soc

This doesn't change anything for glitch-style fields, but those will go
away eventually
This commit is contained in:
Thibaut Girka
2018-05-10 13:04:55 +02:00
parent 34142ab29c
commit f6ec8c4821
4 changed files with 10 additions and 8 deletions

View File

@@ -57,6 +57,7 @@ import { STORE_HYDRATE } from 'flavours/glitch/actions/store';
import emojify from 'flavours/glitch/util/emoji';
import { Map as ImmutableMap, fromJS } from 'immutable';
import escapeTextContentForBrowser from 'escape-html';
import { unescapeHTML } from 'flavours/glitch/util/html';
const normalizeAccount = (state, account) => {
account = { ...account };
@@ -74,6 +75,7 @@ const normalizeAccount = (state, account) => {
...pair,
name_emojified: emojify(escapeTextContentForBrowser(pair.name)),
value_emojified: emojify(pair.value),
value_plain: unescapeHTML(pair.value),
}));
}