From bc813459b6cc3041a21674b631bed7c93f51db3a Mon Sep 17 00:00:00 2001 From: xuzho Date: Thu, 15 Jun 2017 13:11:23 +0800 Subject: [PATCH] update service page uid --- .../GenerateServiceMappingFile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.Content.Build.Code2Yaml.Steps/GenerateServiceMappingFile.cs b/src/Microsoft.Content.Build.Code2Yaml.Steps/GenerateServiceMappingFile.cs index 3b57949..84a3376 100644 --- a/src/Microsoft.Content.Build.Code2Yaml.Steps/GenerateServiceMappingFile.cs +++ b/src/Microsoft.Content.Build.Code2Yaml.Steps/GenerateServiceMappingFile.cs @@ -117,7 +117,7 @@ group v.Value by v.Key.Category into g0 name = item.Category, href = chrefAndType.Item1, landingPageType = chrefAndType.Item2, - uid = "azure.java.sdk.landingpage.services." + service + "." + category, + uid = "azure.java.sdk.landingpage.services." + service.Replace(" ", "").ToLower() + "." + category, children = item.Uids.ToList() }) }).OrderBy(s => s.name))