lowercase routing issue fixed
Signed-off-by: Mert Can Bilgiç <mert.bilgic@trendyol.com>
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user