From 3f2a8feaeafd29481aba15f786a2be5b684bf46e Mon Sep 17 00:00:00 2001 From: Qiyun Dai Date: Thu, 6 Jul 2023 15:25:47 -0500 Subject: [PATCH] FR toolbar title case fix --- express/blocks/template-list/template-list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/express/blocks/template-list/template-list.js b/express/blocks/template-list/template-list.js index b7076137a..f773f6e49 100644 --- a/express/blocks/template-list/template-list.js +++ b/express/blocks/template-list/template-list.js @@ -90,7 +90,7 @@ async function populateHeadingPlaceholder(locale, props) { grammarTemplate.split(' ').forEach((word, index, words) => { if (index + 1 < words.length) { if (word === 'de' && wordStartsWithVowels(words[index + 1])) { - words.splice(index, 2, `d'${words[index + 1].toLowerCase()}`); + words.splice(index, 2, `d'${words[index + 1]}`); grammarTemplate = words.join(' '); } }