@megha-ui/react 1.2.330 → 1.2.331
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.
|
@@ -102,6 +102,7 @@ const GroupedGrid = ({ groupedData, rowOpened, startIndex, endIndex, alternateRo
|
|
|
102
102
|
: compositeIndex > -1
|
|
103
103
|
? compositeValues[compositeIndex]
|
|
104
104
|
: "";
|
|
105
|
+
console.log({ compositeIndex, idx, columnKey });
|
|
105
106
|
if (display &&
|
|
106
107
|
(idx === keys.length - 1)) {
|
|
107
108
|
return `${display} (${item === null || item === void 0 ? void 0 : item.count})`;
|
|
@@ -109,7 +110,6 @@ const GroupedGrid = ({ groupedData, rowOpened, startIndex, endIndex, alternateRo
|
|
|
109
110
|
else if (display && compositeIndex === compositeKeys.length - 1) {
|
|
110
111
|
return `${display} (${item === null || item === void 0 ? void 0 : item.count})`;
|
|
111
112
|
}
|
|
112
|
-
console.log({ item, columnKey, index });
|
|
113
113
|
if (compositeKeys.includes(item.key) || item.key === columnKey) {
|
|
114
114
|
return display;
|
|
115
115
|
}
|
package/package.json
CHANGED