From aabd999a1a9efad6071bbb6ecb1053c8fc2bb72e Mon Sep 17 00:00:00 2001 From: Adam Harvey Date: Fri, 26 Mar 2021 09:32:39 -0400 Subject: [PATCH] Update localization Signed-off-by: Adam Harvey --- .../src/components/SystemDiagramCard/SystemDiagramCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/catalog/src/components/SystemDiagramCard/SystemDiagramCard.tsx b/plugins/catalog/src/components/SystemDiagramCard/SystemDiagramCard.tsx index e2c48fe521..4297f67f79 100644 --- a/plugins/catalog/src/components/SystemDiagramCard/SystemDiagramCard.tsx +++ b/plugins/catalog/src/components/SystemDiagramCard/SystemDiagramCard.tsx @@ -50,7 +50,7 @@ function simplifiedEntityName( // Simplify the diagram output by hiding only the default namespace return serializeEntityRef(ref) .toString() - .toLowerCase() + .toLocaleLowerCase('en-US') .replace(':default/', ':'); }