diff --git a/packages/ui/component.js b/packages/ui/component.js index 6160c6e9d7..872aa296b0 100644 --- a/packages/ui/component.js +++ b/packages/ui/component.js @@ -485,7 +485,8 @@ _.extend(Component.prototype, { Component.create = function (/*args*/) { constructorsLocked = false; var comp = new this; - Component.apply(comp, arguments); + if (this !== Component) + Component.apply(comp, arguments); return comp; };