From e1a1dedfb9e44eeefca9a4791409fa365a5760ba Mon Sep 17 00:00:00 2001 From: Nikolaj Geisle <70372949+Zeegaan@users.noreply.github.com> Date: Tue, 24 Oct 2023 14:43:57 +0200 Subject: [PATCH] Dont explicitly index nested property by default (#15028) --- src/Umbraco.Core/Configuration/Models/IndexingSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Core/Configuration/Models/IndexingSettings.cs b/src/Umbraco.Core/Configuration/Models/IndexingSettings.cs index 2a94a406d1..ff3bebd989 100644 --- a/src/Umbraco.Core/Configuration/Models/IndexingSettings.cs +++ b/src/Umbraco.Core/Configuration/Models/IndexingSettings.cs @@ -8,7 +8,7 @@ namespace Umbraco.Cms.Core.Configuration.Models; [UmbracoOptions(Constants.Configuration.ConfigIndexing)] public class IndexingSettings { - private const bool StaticExplicitlyIndexEachNestedProperty = true; + private const bool StaticExplicitlyIndexEachNestedProperty = false; /// /// Gets or sets a value for whether each nested property should have it's own indexed value. Requires a rebuild of indexes when changed.