mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-11-23 10:50:21 +00:00
Fix default value initialization for NoConfig to use an empty dictionary
This commit is contained in:
parent
fdcdc4b3fc
commit
9925cbff40
@ -146,7 +146,7 @@ public static partial class ManagedConfiguration
|
|||||||
|
|
||||||
configMeta = new NoConfig<TClass, IDictionary<string, string>>(configSelection, propertyExpression)
|
configMeta = new NoConfig<TClass, IDictionary<string, string>>(configSelection, propertyExpression)
|
||||||
{
|
{
|
||||||
Default = [],
|
Default = new Dictionary<string, string>(),
|
||||||
};
|
};
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user