impaktapps-ui-builder 1.0.138 → 1.0.139

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.138",
3
+ "version": "1.0.139",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -275,7 +275,7 @@ const buildUiSchema = (config: any, store?: any) => {
275
275
  if (config?.elements) {
276
276
  if (config?.type === "LeaderBoard") {
277
277
  const rowElements = []
278
- config.elements.filter((cellElem, elemInd) => {
278
+ config.elements.map((cellElem) => {
279
279
  const commonProperties = {
280
280
  accessorKey: cellElem.name,
281
281
  type: cellElem.type === "ColumnGroup" ? "ColumnGroup" : cellElem.columnFormat,