@quillsql/react 2.16.75 → 2.16.76
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/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -63264,7 +63264,7 @@ async function loadReportForUseForm({
|
|
|
63264
63264
|
draftSessionId
|
|
63265
63265
|
});
|
|
63266
63266
|
const pivotRows = pivotResult.report?.pivotRows;
|
|
63267
|
-
const rowField = effectivePivot?.rowField;
|
|
63267
|
+
const rowField = pivotResult.report?.pivotResultRowField ?? effectivePivot?.rowField;
|
|
63268
63268
|
const rowFieldTrimmed = String(rowField ?? "").trim();
|
|
63269
63269
|
const hasRowBucketKey = !rowFieldTrimmed || Array.isArray(pivotRows) && pivotRows.some(
|
|
63270
63270
|
(row) => row && typeof row === "object" && Object.prototype.hasOwnProperty.call(row, rowFieldTrimmed)
|
package/dist/index.js
CHANGED
|
@@ -63476,7 +63476,7 @@ async function loadReportForUseForm({
|
|
|
63476
63476
|
draftSessionId
|
|
63477
63477
|
});
|
|
63478
63478
|
const pivotRows = pivotResult.report?.pivotRows;
|
|
63479
|
-
const rowField = effectivePivot?.rowField;
|
|
63479
|
+
const rowField = pivotResult.report?.pivotResultRowField ?? effectivePivot?.rowField;
|
|
63480
63480
|
const rowFieldTrimmed = String(rowField ?? "").trim();
|
|
63481
63481
|
const hasRowBucketKey = !rowFieldTrimmed || Array.isArray(pivotRows) && pivotRows.some(
|
|
63482
63482
|
(row) => row && typeof row === "object" && Object.prototype.hasOwnProperty.call(row, rowFieldTrimmed)
|