Skip to content

Commit 3f4c8c5

Browse files
authored
Merge pull request #4 from madsoulswe/develop
Develop
2 parents 77d9d9b + 5045b73 commit 3f4c8c5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Our.Umbraco.CopyVariant/App_Plugins/Our.Umbraco.CopyVariant/contentapp.controller.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
vm.properties.push({
5252
alias: property.alias,
5353
name: property.label,
54-
isDisabled: property.editor === "Umbraco.NestedContent" || property.editor === "Umbraco.BlockList",
54+
isDisabled: false,//property.editor === "Umbraco.NestedContent" || property.editor === "Umbraco.BlockList",
5555
copy: false,
5656
});
5757
}

src/Our.Umbraco.CopyVariant/Controllers/CopyVariantApiController.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ public bool CopyCulture(CopyCulture model)
5353
}
5454

5555
var complexProperty = new string[] {
56-
global::Umbraco.Core.Constants.PropertyEditors.Aliases.NestedContent,
57-
global::Umbraco.Core.Constants.PropertyEditors.Aliases.BlockList
56+
//global::Umbraco.Core.Constants.PropertyEditors.Aliases.NestedContent,
57+
//global::Umbraco.Core.Constants.PropertyEditors.Aliases.BlockList
5858
};
5959

6060
foreach (var property in content.Properties.Where(x =>

0 commit comments

Comments
 (0)