This commit is contained in:
Eugene Pankov
2018-12-21 23:18:22 +01:00
parent e4bcfd8f39
commit 6f41865474
20 changed files with 94 additions and 132 deletions

View File

@@ -56,7 +56,7 @@ export class ConfigProxy {
return real[key]
} else {
if (isNonStructuralObjectMember(defaults[key])) {
real[key] = {...defaults[key]}
real[key] = { ...defaults[key] }
delete real[key].__nonStructural
return real[key]
} else {