diff --git a/src/Skybrud.Umbraco.GridData/GridControl.cs b/src/Skybrud.Umbraco.GridData/GridControl.cs index 0117687..81ba188 100644 --- a/src/Skybrud.Umbraco.GridData/GridControl.cs +++ b/src/Skybrud.Umbraco.GridData/GridControl.cs @@ -295,8 +295,7 @@ public static GridControl Parse(GridArea area, JObject obj) { Area = area }; - // As of Umbraco 7.3, information about the editor is no longer saved in the JSON, since these should be read from the configuration - if (UmbracoVersion.Current.Major > 7 || (UmbracoVersion.Current.Major == 7 && UmbracoVersion.Current.Minor >= 3)) Howdy.ReplaceEditorObjectFromConfig(control); + Howdy.ReplaceEditorObjectFromConfig(control); // Parse the editor control.Editor = obj.GetObject("editor", x => GridEditor.Parse(control, x)); @@ -322,4 +321,4 @@ public static GridControl Parse(GridArea area, JObject obj) { } -} \ No newline at end of file +}