From 5778a45c95987bd714643232fb2eaa7b0e7da8f5 Mon Sep 17 00:00:00 2001 From: Per Ploug Krogslund Date: Tue, 18 Aug 2015 13:21:16 +0200 Subject: [PATCH] default content type icon --- src/Umbraco.Web/Editors/ContentTypeController.cs | 2 ++ 1 file changed, 2 insertions(+) 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; }