From ba2792b33eb2eec5c8ba18c7326ad394432ab538 Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Mon, 3 May 2021 15:54:25 +0200 Subject: [PATCH] fix lowercase issue for packages --- .../src/common/services/navigation.service.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/common/services/navigation.service.js b/src/Umbraco.Web.UI.Client/src/common/services/navigation.service.js index a51ed462fa..3b98e8c629 100644 --- a/src/Umbraco.Web.UI.Client/src/common/services/navigation.service.js +++ b/src/Umbraco.Web.UI.Client/src/common/services/navigation.service.js @@ -30,7 +30,7 @@ function navigationService($routeParams, $location, $q, $injector, eventsService var element = $(args.element); element.addClass('above-backdrop'); }); - + //A list of query strings defined that when changed will not cause a reload of the route var nonRoutingQueryStrings = ["mculture", "cculture", "csegment", "lq", "sr"]; @@ -636,10 +636,10 @@ function navigationService($routeParams, $location, $q, $injector, eventsService if (packageTreeFolder) { return (Umbraco.Sys.ServerVariables.umbracoSettings.appPluginsPath + "/" + packageTreeFolder + - "/backoffice/" + treeAlias + "/" + action + ".html").toLowerCase(); + "/backoffice/" + treeAlias + "/" + action + ".html"); } else { - return ("views/" + treeAlias + "/" + action + ".html").toLowerCase();; + return ("views/" + treeAlias + "/" + action + ".html").toLowerCase(); } },