From 8baa66b8f398841607bb042f5eb9d2d9a68ce61b Mon Sep 17 00:00:00 2001 From: Russell Date: Fri, 15 Apr 2022 11:54:23 +1200 Subject: [PATCH] Fix for Issue 12262 Fixes issue https://github.com/umbraco/Umbraco-CMS/issues/12262 --- src/Umbraco.Web.UI/Views/Partials/grid/editors/base.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI/Views/Partials/grid/editors/base.cshtml b/src/Umbraco.Web.UI/Views/Partials/grid/editors/base.cshtml index 05e27e18e5..e40543b494 100644 --- a/src/Umbraco.Web.UI/Views/Partials/grid/editors/base.cshtml +++ b/src/Umbraco.Web.UI/Views/Partials/grid/editors/base.cshtml @@ -15,7 +15,7 @@ catch (Exception ex) public static string EditorView(dynamic contentItem) { string view = contentItem.editor.render != null ? contentItem.editor.render.ToString() : contentItem.editor.view.ToString(); - view = view.ToLower().Replace(".html", ".cshtml"); + view = view.Replace(".html", ".cshtml"); if (!view.Contains("/")) {