This commit is contained in:
Sandeep Somavarapu 2021-11-26 15:08:33 +01:00
parent 212deea1cc
commit 153a028f3b
No known key found for this signature in database
GPG key ID: 1FED25EC4646638B

View file

@ -202,7 +202,7 @@ export interface IConfigurationDefaults {
export type IRegisteredConfigurationPropertySchema = IConfigurationPropertySchema & {
defaultDefaultValue?: any,
source?: IExtensionInfo,
defaultSource?: IExtensionInfo | string;
defaultValueSource?: IExtensionInfo | string;
};
export type IConfigurationDefaultOverride = { value: any, source?: IExtensionInfo | string };
@ -575,7 +575,7 @@ class ConfigurationRegistry implements IConfigurationRegistry {
defaultValue = getDefaultValue(property.type);
}
property.default = defaultValue;
property.defaultSource = defaultSource;
property.defaultValueSource = defaultSource;
}
}