fix: need to use set, not objectPath directly
This commit is contained in:
parent
dbaabbf2f1
commit
82f603c00a
|
@ -455,7 +455,7 @@ export class Config {
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-for-in-array
|
// eslint-disable-next-line @typescript-eslint/no-for-in-array
|
||||||
for (const key in argPairs) {
|
for (const key in argPairs) {
|
||||||
objectPath.set(this.data, key, argPairs[key]);
|
this.set(key, argPairs[key]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue