This commit is contained in:
Robert Long 2018-07-09 13:32:47 -07:00
Родитель 4a942d674c
Коммит 42d618cab2
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -646,8 +646,10 @@ export default class Editor {
_cloneAndInflate(object, root) {
const clone = object.clone(false);
if (clone.userData._components) {
for (const component of clone.userData._components) {
if (object.userData._components) {
clone.userData._components = [];
for (const component of object.userData._components) {
this.addComponent(clone, component.name, component.props);
}
}