From 4d71c5550b0eb36f30932acd94879e37a31b3ba9 Mon Sep 17 00:00:00 2001 From: Anders Bjerner Date: Tue, 19 Feb 2019 22:36:12 +0100 Subject: [PATCH] Should be returned as a list - otherwise we'll get a new collection and new tab objects each time we iterate over it --- src/Umbraco.Web/Editors/DashboardController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web/Editors/DashboardController.cs b/src/Umbraco.Web/Editors/DashboardController.cs index 8ae59b974c..a43d0c4e9c 100644 --- a/src/Umbraco.Web/Editors/DashboardController.cs +++ b/src/Umbraco.Web/Editors/DashboardController.cs @@ -215,7 +215,7 @@ namespace Umbraco.Web.Editors Alias = y.Alias, View = y.View }) - }); + }).ToList(); } } }