diff --git a/src/core/component.js b/src/core/component.js index 40df3ab1cce..05d91154df4 100644 --- a/src/core/component.js +++ b/src/core/component.js @@ -548,7 +548,7 @@ Component.prototype = { if (this.isSingleProperty) { return parseProperty(data, schema); } } - return parseProperties(data, schema, undefined, this.name, silent); + return parseProperties(data, schema, false, this.name, silent); }, /** diff --git a/src/core/system.js b/src/core/system.js index af3b446d4b2..9e36c12ce7b 100755 --- a/src/core/system.js +++ b/src/core/system.js @@ -83,7 +83,7 @@ System.prototype = { if (isSingleProp(schema)) { this.data = parseProperty(rawData, schema); } else { - this.data = parseProperties(styleParser.parse(rawData) || {}, schema); + this.data = parseProperties(styleParser.parse(rawData) || {}, schema, false, this.name); } },