Don't use non-generic ILogger as a fallback in BlockEditorPropertyValueEditor (#20532)

Update logger service retrieval in BlockEditorPropertyValueEditor
This commit is contained in:
Ben White
2025-10-16 20:06:10 +01:00
committed by GitHub
parent 369b020d9d
commit 31bcbc1147

View File

@@ -51,7 +51,7 @@ public abstract class BlockEditorPropertyValueEditor<TValue, TLayout> : BlockVal
languageService,
ioHelper,
attribute,
StaticServiceProvider.Instance.GetRequiredService<ILogger>())
StaticServiceProvider.Instance.GetRequiredService<ILogger<BlockEditorPropertyValueEditor<TValue, TLayout>>>())
{
}