From d8c1e2fa987ffdbcc4f95e3521a6257d2198b080 Mon Sep 17 00:00:00 2001 From: Warren Date: Wed, 21 Mar 2018 15:53:09 +0000 Subject: [PATCH] Makes sure to set no child nodes & menu url Removes the child arrow for tree items Removes the 3 dots for the context menu item that had nothing in it --- src/Umbraco.Web/Trees/LanguageTreeController.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Umbraco.Web/Trees/LanguageTreeController.cs b/src/Umbraco.Web/Trees/LanguageTreeController.cs index 76a34385db..0e547fea6a 100644 --- a/src/Umbraco.Web/Trees/LanguageTreeController.cs +++ b/src/Umbraco.Web/Trees/LanguageTreeController.cs @@ -35,6 +35,8 @@ namespace Umbraco.Web.Trees //this will load in a custom UI instead of the dashboard for the root node root.RoutePath = string.Format("{0}/{1}/{2}", Constants.Applications.Settings, Constants.Trees.Languages, "overview"); root.Icon = "icon-flag-alt"; + root.HasChildren = false; + root.MenuUrl = null; return root; }