From 31bcbc1147f66cab1837a9afe4732ad0bb35b959 Mon Sep 17 00:00:00 2001 From: Ben White Date: Thu, 16 Oct 2025 20:06:10 +0100 Subject: [PATCH] Don't use non-generic ILogger as a fallback in BlockEditorPropertyValueEditor (#20532) Update logger service retrieval in BlockEditorPropertyValueEditor --- .../PropertyEditors/BlockEditorPropertyValueEditor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Infrastructure/PropertyEditors/BlockEditorPropertyValueEditor.cs b/src/Umbraco.Infrastructure/PropertyEditors/BlockEditorPropertyValueEditor.cs index 10c752088b..84299d6399 100644 --- a/src/Umbraco.Infrastructure/PropertyEditors/BlockEditorPropertyValueEditor.cs +++ b/src/Umbraco.Infrastructure/PropertyEditors/BlockEditorPropertyValueEditor.cs @@ -51,7 +51,7 @@ public abstract class BlockEditorPropertyValueEditor : BlockVal languageService, ioHelper, attribute, - StaticServiceProvider.Instance.GetRequiredService()) + StaticServiceProvider.Instance.GetRequiredService>>()) { }