From 3b3e1cec4071b44c2cf90df8bbfe85d805a3cd6c Mon Sep 17 00:00:00 2001 From: nikolajlauridsen Date: Tue, 20 Jun 2023 09:18:39 +0200 Subject: [PATCH] Add Noop property indexer to multi url picker --- .../PropertyEditors/MultiUrlPickerPropertyEditor.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Umbraco.Infrastructure/PropertyEditors/MultiUrlPickerPropertyEditor.cs b/src/Umbraco.Infrastructure/PropertyEditors/MultiUrlPickerPropertyEditor.cs index 7387ab7808..866eb74c8a 100644 --- a/src/Umbraco.Infrastructure/PropertyEditors/MultiUrlPickerPropertyEditor.cs +++ b/src/Umbraco.Infrastructure/PropertyEditors/MultiUrlPickerPropertyEditor.cs @@ -43,6 +43,8 @@ public class MultiUrlPickerPropertyEditor : DataEditor SupportsReadOnly = true; } + public override IPropertyIndexValueFactory PropertyIndexValueFactory { get; } = new NoopPropertyIndexValueFactory(); + protected override IConfigurationEditor CreateConfigurationEditor() => new MultiUrlPickerConfigurationEditor(_ioHelper, _editorConfigurationParser);