Icon Constants consistency

Updated the `Constants.Icons` and replaced the hard-coded strings with
 the const references.
This commit is contained in:
leekelleher
2019-06-07 17:02:55 +01:00
committed by Sebastiaan Janssen
parent fbe184ef6e
commit 580ba79619
29 changed files with 109 additions and 55 deletions

View File

@@ -22,7 +22,7 @@ namespace Umbraco.Web.Trees
//this will load in a custom UI instead of the dashboard for the root node
root.RoutePath = $"{Constants.Applications.Users}/{Constants.Trees.Users}/users";
root.Icon = "icon-users";
root.Icon = Constants.Icons.UserGroup;
root.HasChildren = false;
return root;