@salesforce/core 3.15.2 → 3.15.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -334,7 +334,9 @@ class SfdxConfigAggregator extends ConfigAggregator {
|
|
|
334
334
|
return super.getPropertyValue(this.translate(key));
|
|
335
335
|
}
|
|
336
336
|
getInfo(key) {
|
|
337
|
-
|
|
337
|
+
const info = super.getInfo(this.translate(key));
|
|
338
|
+
info.key = this.translate(info.key, 'toOld');
|
|
339
|
+
return info;
|
|
338
340
|
}
|
|
339
341
|
getLocation(key) {
|
|
340
342
|
return super.getLocation(this.translate(key));
|