|
@@ -94,7 +94,7 @@ export const editActions = EditorModule.action({
|
|
|
const currComp = createObj({ compKey: "Video" }, false);
|
|
|
// currComp.setSize(W, H );
|
|
|
currComp.value.url = url;
|
|
|
- page.designData.compMap[currComp.id] = currComp;
|
|
|
+ page.designData.compMap[currComp.id] = currComp;
|
|
|
// page.setCompPid(currComp.id, page.currStreamCardId);
|
|
|
const childIds = [...page.currStreamCard.children.default];
|
|
|
childIds.push(currComp.id);
|
|
@@ -134,7 +134,7 @@ export const editActions = EditorModule.action({
|
|
|
let currCard = page.currStreamCard;
|
|
|
|
|
|
const currComp = createObj({ compKey }, false);
|
|
|
- // debugger
|
|
|
+
|
|
|
//@ts-ignore
|
|
|
const objs: any[] = currComp.children.objs || [];
|
|
|
if (objs.length > 0) {
|
|
@@ -143,7 +143,7 @@ export const editActions = EditorModule.action({
|
|
|
page.setCompPid(o.id, currComp.id);
|
|
|
});
|
|
|
}
|
|
|
- page.designData.compMap[currComp.id] = currComp;
|
|
|
+ page.designData.compMap[currComp.id] = currComp;
|
|
|
page.setCompPid(currComp.id, currCard.id);
|
|
|
const childIds = [...currCard.children.default];
|
|
|
childIds.push(currComp.id);
|