Merge pull request #7917 from mertcb/migrate/oss

This commit is contained in:
Eric Peterson
2021-11-17 08:44:42 +01:00
committed by GitHub
7 changed files with 85 additions and 8 deletions
@@ -39,7 +39,7 @@ export const DocsCardGrid = ({
'techdocs.legacyUseCaseSensitiveTripletPaths',
)
? (str: string) => str
: (str: string) => str.toLocaleLowerCase();
: (str: string) => str.toLocaleLowerCase('en-US');
if (!entities) return null;
return (
@@ -56,7 +56,7 @@ export const DocsTable = ({
'techdocs.legacyUseCaseSensitiveTripletPaths',
)
? (str: string) => str
: (str: string) => str.toLocaleLowerCase();
: (str: string) => str.toLocaleLowerCase('en-US');
if (!entities) return null;