impaktapps-ui-builder 1.0.64-alpha.101 → 1.0.64-alpha.102

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.64-alpha.101",
3
+ "version": "1.0.64-alpha.102",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -377,7 +377,8 @@ const buildUiSchema = (config: any, store?: any) => {
377
377
  const tableElem = {
378
378
  widget: buildUiSchema(cellElem, store),
379
379
  // widget: cellElem.type != "ColumnGroup" ? buildUiSchema(cellElem, store) : undefined,
380
- elements: cellElem.type == "ColumnGroup" ? cellElem.elements.map((childCellElem) => buildUiSchema(childCellElem, store)) : [],
380
+ // elements: cellElem.type == "ColumnGroup" ? cellElem.elements.map((childCellElem) => buildUiSchema(childCellElem, store)) : [],
381
+ elements: cellElem.type == "ColumnGroup" ? cellElem.elements : [],
381
382
  ...commonProperties
382
383
 
383
384
  }