From abf75bdd98d68fa16c3dd04d7740acbea98e7a3e Mon Sep 17 00:00:00 2001 From: Quincy Morgan <2046746+quincylvania@users.noreply.github.com> Date: Wed, 16 Sep 2020 08:40:02 -0400 Subject: [PATCH] Don't use HTML on page title --- modules/behavior/hash.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/behavior/hash.js b/modules/behavior/hash.js index e81ea9354..42d27b831 100644 --- a/modules/behavior/hash.js +++ b/modules/behavior/hash.js @@ -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 }); }