From 1aaa4a353ebfe902504832276ca247f1412a7d43 Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Thu, 6 Dec 2018 11:02:35 +0100 Subject: [PATCH] Bugfix --- src/Umbraco.Web/ContentApps/ContentAppDefinitionCollection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web/ContentApps/ContentAppDefinitionCollection.cs b/src/Umbraco.Web/ContentApps/ContentAppDefinitionCollection.cs index 1d94c3f381..484e8641a9 100644 --- a/src/Umbraco.Web/ContentApps/ContentAppDefinitionCollection.cs +++ b/src/Umbraco.Web/ContentApps/ContentAppDefinitionCollection.cs @@ -36,7 +36,7 @@ namespace Umbraco.Web.ContentApps var roles = GetCurrentUserGroups(); - var apps = Enumerable.Empty();// this.Select(x => x.GetContentAppFor(o, roles)).WhereNotNull().OrderBy(x => x.Weight).ToList(); + var apps = this.Select(x => x.GetContentAppFor(o, roles)).WhereNotNull().OrderBy(x => x.Weight).ToList(); var aliases = new HashSet();