Skip to content

Commit

Permalink
Merge branch 'fix_default_field_values_in_mui_folder' of https://gith…
Browse files Browse the repository at this point in the history
  • Loading branch information
jansenbe committed Jun 8, 2022
2 parents 66909f7 + b993d20 commit 37410c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public override TokenParser ProvisionObjects(Web web, ProvisioningTemplate templ
var defaultFolderValues = new List<Entities.IDefaultColumnValue>();
foreach (var templateListFolder in listInfo.TemplateList.Folders)
{
var folderName = templateListFolder.Name;
var folderName = parser.ParseString(templateListFolder.Name);
ProcessDefaultFolders(web, listInfo, templateListFolder, folderName, defaultFolderValues, parser);
}
listInfo.SiteList.SetDefaultColumnValues(defaultFolderValues, true);
Expand Down

0 comments on commit 37410c9

Please # to comment.