impaktapps-ui-builder 1.0.64-alpha.106 → 1.0.64-alpha.108
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -12612,10 +12612,12 @@ const buildUiSchema = (config2, store2) => {
|
|
|
12612
12612
|
return false;
|
|
12613
12613
|
}
|
|
12614
12614
|
const tableElem = {
|
|
12615
|
-
elements: cellElem.type == "ColumnGroup" ? cellElem.elements : [],
|
|
12616
12615
|
widget: cellElem.type != "ColumnGroup" ? buildUiSchema(cellElem, store2) : void 0,
|
|
12617
12616
|
...commonProperties
|
|
12618
12617
|
};
|
|
12618
|
+
if (cellElem.type === "ColumnGroup") {
|
|
12619
|
+
tableElem.elements = buildUiSchema(cellElem, store2);
|
|
12620
|
+
}
|
|
12619
12621
|
rowElements.push(tableElem);
|
|
12620
12622
|
} else {
|
|
12621
12623
|
rowElements.push({ ...commonProperties });
|