Don't use HTML on page title

This commit is contained in:
Quincy Morgan
2020-09-16 08:40:02 -04:00
parent 3df84d3aee
commit abf75bdd98

View File

@@ -62,7 +62,8 @@ export function behaviorHash(context) {
if (selected.length > 1 ) {
contextual = t('title.labeled_and_more', {
labeled: firstLabel,
count: (selected.length - 1).toString()
count: (selected.length - 1).toString(),
html: false
});
} else {
contextual = firstLabel;
@@ -81,7 +82,8 @@ export function behaviorHash(context) {
return t('title.format.' + titleID, {
changes: changeCount,
base: baseTitle,
context: contextual
context: contextual,
html: false
});
}