diff --git a/src/Skybrud.Umbraco.GridData/GridControl.cs b/src/Skybrud.Umbraco.GridData/GridControl.cs index cd0b079..0117687 100644 --- a/src/Skybrud.Umbraco.GridData/GridControl.cs +++ b/src/Skybrud.Umbraco.GridData/GridControl.cs @@ -296,7 +296,7 @@ public class GridControl : GridJsonObject { }; // 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.Minor >= 3) Howdy.ReplaceEditorObjectFromConfig(control); + if (UmbracoVersion.Current.Major > 7 || (UmbracoVersion.Current.Major == 7 && UmbracoVersion.Current.Minor >= 3)) Howdy.ReplaceEditorObjectFromConfig(control); // Parse the editor control.Editor = obj.GetObject("editor", x => GridEditor.Parse(control, x));