We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddeb6bf commit 1bfc575Copy full SHA for 1bfc575
app/code/Magento/PageBuilder/view/adminhtml/web/ts/js/stage-builder.ts
@@ -252,7 +252,7 @@ function getElementChildren(element: HTMLElement): HTMLElement[] {
252
if (child.hasAttribute(Config.getConfig("dataContentTypeAttributeName"))) {
253
children.push(child);
254
} else {
255
- children = getElementChildren(child);
+ children.push(...getElementChildren(child));
256
}
257
258
});
0 commit comments