diff --git a/src/Umbraco.Web/Editors/ContentTypeController.cs b/src/Umbraco.Web/Editors/ContentTypeController.cs index 4c78386578..2e36a6ec71 100644 --- a/src/Umbraco.Web/Editors/ContentTypeController.cs +++ b/src/Umbraco.Web/Editors/ContentTypeController.cs @@ -96,6 +96,8 @@ namespace Umbraco.Web.Editors public ContentTypeDisplay GetEmpty(int parentId) { var ct = new ContentType(parentId); + ct.Icon = "icon-doc"; + var dto = Mapper.Map(ct); return dto; }